Skip to content

Commit 0ec1838

Browse files
committed
8294869: Correct failure of RemovedJDKInternals.java after JDK-8294618
Reviewed-by: alanb, azvegint
1 parent 87acfee commit 0ec1838

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/langtools/tools/jdeps/jdkinternals/RemovedJDKInternals.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2022, 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
@@ -184,9 +184,9 @@ private static Map<String, String> findDeps(String out) {
184184
private static final Map<String, String> REPLACEMENTS = Map.of(
185185
"com.sun.image.codec.jpeg.JPEGCodec", "Use javax.imageio @since 1.4",
186186
"sun.misc.Service", "Use java.util.ServiceLoader @since 1.6",
187-
"sun.misc.SoftCache", "Removed. See http://openjdk.java.net/jeps/260",
187+
"sun.misc.SoftCache", "Removed. See https://openjdk.org/jeps/260",
188188
"sun.reflect.Reflection", "Use java.lang.StackWalker @since 9",
189-
"sun.reflect.ReflectionFactory", "See http://openjdk.java.net/jeps/260"
189+
"sun.reflect.ReflectionFactory", "See https://openjdk.org/jeps/260"
190190
);
191191

192192
@Test

0 commit comments

Comments
 (0)