File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
api/src/main/java/com/graphhopper/config
core/src/main/java/com/graphhopper/routing Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 21
21
import com .graphhopper .util .PMap ;
22
22
23
23
/**
24
- * Corresponds to the `profiles` section in `config.yml` and specifies the properties of a routing profile. The name
25
- * used here needs to be used when setting up CH/LM preparations. See also the documentation in `config-example.yml'
24
+ * Corresponds to an entry of the `profiles` section in `config.yml` and specifies the properties of a routing profile.
25
+ * The name used here needs to be used when setting up CH/LM preparations. See also the documentation in
26
+ * `config-example.yml'
26
27
*
27
28
* @see CHProfile
28
29
* @see LMProfile
Original file line number Diff line number Diff line change 44
44
public class CHPreparationHandler {
45
45
private final Logger LOGGER = LoggerFactory .getLogger (getClass ());
46
46
private final List <PrepareContractionHierarchies > preparations = new ArrayList <>();
47
- // we first add the profile configs and later read them to create the actual profile objects (because they require
47
+ // we first add the profiles and later read them to create the config objects (because they require
48
48
// the actual Weightings)
49
49
private final List <CHProfile > chProfiles = new ArrayList <>();
50
50
private final List <CHConfig > chConfigs = new ArrayList <>();
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public class LMPreparationHandler {
49
49
private int activeLandmarkCount = 8 ;
50
50
51
51
private final List <PrepareLandmarks > preparations = new ArrayList <>();
52
- // we first add the profile configs and later read them to create the actual profile objects (because they require
52
+ // we first add the profiles and later read them to create the config objects (because they require
53
53
// the actual Weightings)
54
54
private final List <LMProfile > lmProfiles = new ArrayList <>();
55
55
private final List <LMConfig > lmConfigs = new ArrayList <>();
You can’t perform that action at this time.
0 commit comments