Skip to content

Commit e6c2e65

Browse files
author
Peter
committed
fixing javadoc creation problems
1 parent 40e5b25 commit e6c2e65

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

core/src/main/java/com/graphhopper/GraphHopper.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -820,15 +820,15 @@ protected RoutingAlgorithmFactory createPrepare()
820820
* created. Note that all URL parameters are available in the weightingParameters as String if
821821
* you use the GraphHopper Web module.
822822
* <p>
823-
* @see Weighting.Params.create
824-
* @param wMap all parameters influencing the weighting. E.g. URL parameters coming via
825-
* GHRequest
823+
* @see WeightingMap
824+
* @param weightingMap all parameters influencing the weighting. E.g. parameters coming via
825+
* GHRequest.getHints or directly via "&api.xy=" from the URL of the web UI
826826
* @param encoder the required vehicle
827827
* @return the weighting to be used for route calculation
828828
*/
829-
public Weighting createWeighting( WeightingMap wMap, FlagEncoder encoder )
829+
public Weighting createWeighting( WeightingMap weightingMap, FlagEncoder encoder )
830830
{
831-
String weighting = wMap.getWeighting();
831+
String weighting = weightingMap.getWeighting();
832832
Weighting result;
833833

834834
if ("shortest".equalsIgnoreCase(weighting))

core/src/main/java/com/graphhopper/routing/DijkstraBidirectionRef.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@
3636
* Calculates best path in bidirectional way.
3737
* <p/>
3838
* 'Ref' stands for reference implementation and is using the normal Java-'reference'-way.
39-
* <p/>
40-
* @see DijkstraBidirection for an array based but more complicated version
39+
* <p>
4140
* @author Peter Karich
4241
*/
4342
public class DijkstraBidirectionRef extends AbstractBidirAlgo

core/src/main/java/com/graphhopper/storage/VLongStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void writeByte( byte b )
7777
* Writes an long in a variable-length format. Writes between one and nine bytes. Smaller values
7878
* take fewer bytes. Negative numbers are not supported.
7979
* <p>
80-
* The format is described further in {@link DataOutput#writeVInt(int)}.
80+
* The format is described further in Lucene its DataOutput#writeVInt(int)
8181
* <p/>
8282
* See DataInput readVLong of Lucene
8383
*/

core/src/main/java/com/graphhopper/util/EdgeWrapper.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@
1717
*/
1818
package com.graphhopper.util;
1919

20+
import com.graphhopper.routing.PathBidir;
2021
import gnu.trove.map.hash.TIntIntHashMap;
2122
import java.util.Arrays;
2223

2324
/**
2425
* This class acts as a HashMap (nodes to weights) and is used to implement references from one edge
2526
* to its parent.
2627
* <p/>
27-
* @see DijkstraBidirection
28+
* @see PathBidir
2829
* @author Peter Karich
2930
*/
3031
@NotThreadSafe

tools/src/main/java/com/graphhopper/tools/QueryTorture.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
import java.util.zip.GZIPInputStream;
3434
import org.slf4j.Logger;
3535
import org.slf4j.LoggerFactory;
36-
import sun.security.x509.CRLDistributionPointsExtension;
3736

3837
/**
3938
* Reads log files and queries the live service

0 commit comments

Comments
 (0)