Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.
/ jdk18 Public archive

8278587: StringTokenizer(String, String, boolean) documentation bug #43

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/java.base/share/classes/java/util/StringTokenizer.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1994, 2020, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1994, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -174,9 +174,11 @@ private void setMaxDelimCodePoint() {
* <p>
* If the {@code returnDelims} flag is {@code true}, then
* the delimiter characters are also returned as tokens. Each
* delimiter is returned as a string of length one. If the flag is
* {@code false}, the delimiter characters are skipped and only
* serve as separators between tokens.
* delimiter is returned as a string consisting of a single
* <a href="../lang/Character.html#unicode">Unicode code point</a>
* of the delimiter (which may be one or two {@code char}s). If the
* flag is {@code false}, the delimiter characters are skipped
* and only serve as separators between tokens.
* <p>
* Note that if {@code delim} is {@code null}, this constructor does
* not throw an exception. However, trying to invoke other methods on the