Skip to content

Commit 219b115

Browse files
committedFeb 16, 2021
8261422: Adjust problematic String.format calls in jdk/internal/util/Preconditions.java outOfBoundsMessage
Reviewed-by: clanger
1 parent cdc874d commit 219b115

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/java.base/share/classes/jdk/internal/util/Preconditions.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 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
@@ -203,13 +203,13 @@ private static String outOfBoundsMessage(String checkKind, List<? extends Number
203203
// Switch to default if fewer or more arguments than required are supplied
204204
switch ((args.size() != argSize) ? "" : checkKind) {
205205
case "checkIndex":
206-
return String.format("Index %d out of bounds for length %d",
206+
return String.format("Index %s out of bounds for length %s",
207207
args.get(0), args.get(1));
208208
case "checkFromToIndex":
209-
return String.format("Range [%d, %d) out of bounds for length %d",
209+
return String.format("Range [%s, %s) out of bounds for length %s",
210210
args.get(0), args.get(1), args.get(2));
211211
case "checkFromIndexSize":
212-
return String.format("Range [%d, %<d + %d) out of bounds for length %d",
212+
return String.format("Range [%s, %<s + %s) out of bounds for length %s",
213213
args.get(0), args.get(1), args.get(2));
214214
default:
215215
return String.format("Range check failed: %s %s", checkKind, args);

0 commit comments

Comments
 (0)
Please sign in to comment.