- Timestamp:
- 2006-02-14T00:52:11+01:00 (19 years ago)
- Location:
- test/org/openstreetmap/josm/test
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/org/openstreetmap/josm/test/framework/DataSetTestCaseHelper.java
r49 r52 43 43 * Create a line segment with out of the given nodes. 44 44 */ 45 p rivatestatic LineSegment createLineSegment(DataSet ds, Node n1, Node n2) {45 public static LineSegment createLineSegment(DataSet ds, Node n1, Node n2) { 46 46 LineSegment ls = new LineSegment(n1, n2); 47 47 ds.lineSegments.add(ls); … … 52 52 * Add a random node. 53 53 */ 54 p rivatestatic Node createNode(DataSet ds) {54 public static Node createNode(DataSet ds) { 55 55 Node node = new Node(); 56 56 node.coor = new GeoPoint(Math.random(), Math.random());
Note:
See TracChangeset
for help on using the changeset viewer.