Skip to content

Commit 9cd7090

Browse files
committedDec 17, 2021
8278587: StringTokenizer(String, String, boolean) documentation bug
Backport-of: 8f5fdd8
1 parent fffa73c commit 9cd7090

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
 

‎src/java.base/share/classes/java/util/StringTokenizer.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1994, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1994, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -174,9 +174,11 @@ private void setMaxDelimCodePoint() {
174174
* <p>
175175
* If the {@code returnDelims} flag is {@code true}, then
176176
* the delimiter characters are also returned as tokens. Each
177-
* delimiter is returned as a string of length one. If the flag is
178-
* {@code false}, the delimiter characters are skipped and only
179-
* serve as separators between tokens.
177+
* delimiter is returned as a string consisting of a single
178+
* <a href="../lang/Character.html#unicode">Unicode code point</a>
179+
* of the delimiter (which may be one or two {@code char}s). If the
180+
* flag is {@code false}, the delimiter characters are skipped
181+
* and only serve as separators between tokens.
180182
* <p>
181183
* Note that if {@code delim} is {@code null}, this constructor does
182184
* not throw an exception. However, trying to invoke other methods on the

0 commit comments

Comments
 (0)
Please sign in to comment.