Skip to content

Commit c92bdb0

Browse files
author
Pavel Rappo
committedSep 16, 2023
8316187: Modernize examples in StringTokenizer and {Date,Number}Format
Reviewed-by: naoto
1 parent 8f46abc commit c92bdb0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

‎src/java.base/share/classes/java/text/DateFormat.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@
8585
* <blockquote>
8686
* {@snippet lang=java :
8787
* DateFormat df = DateFormat.getDateInstance();
88-
* for (int i = 0; i < myDate.length; ++i) {
89-
* output.println(df.format(myDate[i]) + "; ");
88+
* for (Date myDate : dates) {
89+
* output.println(df.format(myDate) + "; ");
9090
* }
9191
* }
9292
* </blockquote>

‎src/java.base/share/classes/java/text/NumberFormat.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@
8282
* <blockquote>
8383
* {@snippet lang=java :
8484
* NumberFormat nf = NumberFormat.getInstance();
85-
* for (int i = 0; i < myNumber.length; ++i) {
86-
* output.println(nf.format(myNumber[i]) + "; ");
85+
* for (var myNumber : numbers) {
86+
* output.println(nf.format(myNumber) + "; ");
8787
* }
8888
* }
8989
* </blockquote>

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1994, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1994, 2023, 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
@@ -83,8 +83,8 @@
8383
* method can be used to break up a string into its basic tokens:
8484
* <blockquote><pre>
8585
* String[] result = "this is a test".split("\\s");
86-
* for (int x=0; x&lt;result.length; x++)
87-
* System.out.println(result[x]);
86+
* for (String r : result)
87+
* System.out.println(r);
8888
* </pre></blockquote>
8989
* <p>
9090
* prints the following output:

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Sep 16, 2023

@openjdk-notifier[bot]
Please sign in to comment.