Ignore:
Timestamp:
2024-04-24T20:02:57+02:00 (4 weeks ago)
Author:
taylor.smock
Message:

Fix last failing test in Java 21

  • Generate Java 21 image files (probably from r19043: Drop COMPAT locale provider).
  • Replace most deprecated function calls and classes in tests with non-deprecated functions.
File:
1 edited

Legend:

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

    r18991 r19056  
    592592            ) {
    593593                assertArrayEquals(
    594                     Utils.readBytesFromStream(streamA),
    595                     Utils.readBytesFromStream(streamB)
     594                    streamA.readAllBytes(),
     595                    streamB.readAllBytes()
    596596                );
    597597            }
Note: See TracChangeset for help on using the changeset viewer.