Ignore:
Timestamp:
2020-03-03T02:12:44+01:00 (4 years ago)
Author:
Don-vip
Message:

see #18140 - reorganization of data(_nodist), images(_nodist), styles(_nodist), IDE and native files in a more practical file tree.

  • Everything belonging to the jar is now in resources (data, images, styles)
  • Everything not belonging to the jar is now in nodist (data, images, styles)
  • Everything related to OS native functions is now in native (linux, macosx, windows)
  • Everything related to an IDE is now in ide (eclipse, netbeans)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/actions/JoinAreasActionTest.java

    r15883 r16006  
    146146
    147147    /**
    148      * Non-regression test which checks example files in data_nodist
     148     * Non-regression test which checks example files in nodist/data
    149149     * @throws Exception if an error occurs
    150150     */
     
    153153    public void testExamples() throws Exception {
    154154        DataSet dsToJoin, dsExpected;
    155         try (InputStream is = Files.newInputStream(Paths.get("data_nodist/Join_Areas_Tests.osm"))) {
     155        try (InputStream is = Files.newInputStream(Paths.get("nodist/data/Join_Areas_Tests.osm"))) {
    156156            dsToJoin = OsmReader.parseDataSet(is, NullProgressMonitor.INSTANCE);
    157157        }
    158         try (InputStream is = Files.newInputStream(Paths.get("data_nodist/Join_Areas_Tests_joined.osm"))) {
     158        try (InputStream is = Files.newInputStream(Paths.get("nodist/data/Join_Areas_Tests_joined.osm"))) {
    159159            dsExpected = OsmReader.parseDataSet(is, NullProgressMonitor.INSTANCE);
    160160        }
Note: See TracChangeset for help on using the changeset viewer.