Changeset 15718 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2020-01-18T14:14:02+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r15716 r15718 61 61 import java.util.regex.Matcher; 62 62 import java.util.regex.Pattern; 63 import java.util.stream.Collectors; 63 64 import java.util.stream.Stream; 64 65 import java.util.zip.ZipFile; … … 226 227 * empty string 227 228 * @return null if values is null. The joined string otherwise. 228 */ 229 * @deprecated use {@link String#join} or {@link Collectors#joining} 230 */ 231 @Deprecated 229 232 public static String join(String sep, Collection<?> values) { 230 233 CheckParameterUtil.ensureParameterNotNull(sep, "sep");
Note:
See TracChangeset
for help on using the changeset viewer.