Skip to content

Commit 7b4e735

Browse files
committed
Fix
1 parent b602423 commit 7b4e735

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/graphhopper/routing/util/EncodingManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public EncodingManager build() {
176176
if (em.encodedValueMap.isEmpty())
177177
throw new IllegalStateException("No EncodedValues were added to the EncodingManager");
178178
em.intsForFlags = edgeConfig.getRequiredInts();
179-
em.intsForTurnCostFlags = edgeConfig.getRequiredInts();
179+
em.intsForTurnCostFlags = turnCostConfig.getRequiredInts();
180180
EncodingManager result = em;
181181
em = null;
182182
return result;

0 commit comments

Comments
 (0)