Changeset 11747 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2017-03-19T15:55:27+01:00 (3 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r11649 r11747 1795 1795 } 1796 1796 1797 private static Color parseRGB(String 1797 private static Color parseRGB(String... s) { 1798 1798 int[] rgb = new int[3]; 1799 1799 try { -
trunk/src/org/openstreetmap/josm/tools/PlatformHookUnixoid.java
r11642 r11747 116 116 * @since 7314 117 117 */ 118 public static String getPackageDetails(String 118 public static String getPackageDetails(String... packageNames) { 119 119 try { 120 120 // CHECKSTYLE.OFF: SingleSpaceSeparator -
trunk/src/org/openstreetmap/josm/tools/Utils.java
r11740 r11747 349 349 * @since 7436 350 350 */ 351 public static int[] copyArray(int 351 public static int[] copyArray(int... array) { 352 352 if (array != null) { 353 353 return Arrays.copyOf(array, array.length);
Note: See TracChangeset
for help on using the changeset viewer.