diff options
author | Sven Gothel <[email protected]> | 2021-01-25 10:10:47 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-01-25 10:10:47 +0100 |
commit | f515e4e80f29c356f369387c2311af28dd8d6f26 (patch) | |
tree | 7af52864a813748650c3414f34cd5c955f595985 /java_net | |
parent | 9922206ecb907b04071a88bfcb27aa34053caa9f (diff) |
java: Align '@since' to version 0.3.0 (flushing imported version number)
Diffstat (limited to 'java_net')
-rw-r--r-- | java_net/org/jau/net/Uri.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java_net/org/jau/net/Uri.java b/java_net/org/jau/net/Uri.java index b47fe2e..c243e8e 100644 --- a/java_net/org/jau/net/Uri.java +++ b/java_net/org/jau/net/Uri.java @@ -161,7 +161,7 @@ import org.jau.sys.PropertyAccess; * <p> * Other characters in a Uri must be percent encoded. * </p> - * @since 2.2.1 + * @since 0.3.0 */ public class Uri { private static final boolean DEBUG; @@ -1244,7 +1244,7 @@ public class Uri { /** * Returns true, if this instance is a {@code jar} {@code scheme}, otherwise false. - * @since 2.3.2 + * @since 0.3.0 */ public final boolean isJarScheme() { return null != scheme && JAR_SCHEME.equals( scheme.get() ); @@ -1392,7 +1392,7 @@ public class Uri { * return {@link #schemeSpecificPart} + {@code #} {@link #fragment} via it's own new Uri instance. * <p> * In case this Uri is a {@code jar-scheme}, the {@code query} is omitted, - * since it shall be invalid for {@code jar-schemes} anyway. + * since 0.3.0 * </p> * <p> * Otherwise method returns {@code null}. |