Skip to content

Commit

Permalink
Fixed method spelling error 'udpateGeometryFromWKT' to 'updateGeometr…
Browse files Browse the repository at this point in the history
…yFromWKT'
  • Loading branch information
craigtaverner committed Jul 8, 2011
1 parent 3d9958d commit 30cf528
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public Iterable<Node> addNodeToLayer(@Source GraphDatabaseService db,
@PluginTarget(GraphDatabaseService.class)
@Description("add a geometry specified in WKT format to a layer, encoding in the specified layers encoding schemea.")
public Iterable<Node> addGeometryWKTToLayer(@Source GraphDatabaseService db,
@Description("The geometry in WKT to add to the layer") @Parameter(name = "geometryWKT") String geometryWKT,
@Description("The geometry in WKT to add to the layer") @Parameter(name = "geometry") String geometryWKT,
@Description("The layer to add the node to.") @Parameter(name = "layer") String layer) {
System.out.println("Adding geometry to layer '" + layer + "': " + geometryWKT);
SpatialDatabaseService spatialService = new SpatialDatabaseService(db);
Expand All @@ -135,8 +135,8 @@ public Iterable<Node> addGeometryWKTToLayer(@Source GraphDatabaseService db,

@PluginTarget(GraphDatabaseService.class)
@Description("update an existing geometry specified in WKT format. The layer must already contain the record.")
public Iterable<Node> udpateGeometryFromWKT(@Source GraphDatabaseService db,
@Description("The geometry in WKT to add to the layer") @Parameter(name = "geometryWKT") String geometryWKT,
public Iterable<Node> updateGeometryFromWKT(@Source GraphDatabaseService db,
@Description("The geometry in WKT to add to the layer") @Parameter(name = "geometry") String geometryWKT,
@Description("The geometry node id") @Parameter(name = "node") long nodeId,
@Description("The layer to add the node to.") @Parameter(name = "layer") String layer) {
System.out.println("Adding geometry to layer '" + layer + "': " + geometryWKT);
Expand Down

0 comments on commit 30cf528

Please sign in to comment.