Changeset 10680 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2016-07-30T16:27:16+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Diff.java
r10600 r10680 567 567 * @see #equivCount() 568 568 */ 569 private byte[] discardable(final int []counts) {569 private byte[] discardable(final int ... counts) { 570 570 final int end = bufferedLines; 571 571 final byte[] discards = new byte[end]; -
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r10627 r10680 1838 1838 } 1839 1839 1840 private static Color parseRGB(String []s) {1840 private static Color parseRGB(String ... s) { 1841 1841 int[] rgb = new int[3]; 1842 1842 try { -
trunk/src/org/openstreetmap/josm/tools/Utils.java
r10657 r10680 405 405 * @since 6222 406 406 */ 407 public static char[] copyArray(char []array) {407 public static char[] copyArray(char ... array) { 408 408 if (array != null) { 409 409 return Arrays.copyOf(array, array.length); … … 418 418 * @since 7436 419 419 */ 420 public static int[] copyArray(int []array) {420 public static int[] copyArray(int ... array) { 421 421 if (array != null) { 422 422 return Arrays.copyOf(array, array.length); … … 928 928 } 929 929 930 private static String strip(final String str, final char []skipChars) {930 private static String strip(final String str, final char ... skipChars) { 931 931 932 932 int start = 0; -
trunk/src/org/openstreetmap/josm/tools/template_engine/CompoundTemplateEntry.java
r9079 r10680 13 13 } 14 14 15 private CompoundTemplateEntry(TemplateEntry []entries) {15 private CompoundTemplateEntry(TemplateEntry ... entries) { 16 16 this.entries = entries; 17 17 }
Note:
See TracChangeset
for help on using the changeset viewer.