Skip to content

Commit 49a0287

Browse files
committed
6779701: Wrong defect ID in the code of test LocalRMIServerSocketFactoryTest.java
Backport-of: 8a662105c2da1f0fb9b7ecc5058fc85858439ed9
1 parent 501a4bf commit 49a0287

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/jdk/sun/management/jmxremote/LocalRMIServerSocketFactoryTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2008, 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
@@ -64,17 +64,17 @@ private static void checkError(String message) throws Exception {
6464
}
6565

6666

67-
// case of 6674166: this is very unlikely to happen, even if
68-
// both 6674166 and 6774170 aren't fixed. If it happens
67+
// case of 6774166: this is very unlikely to happen, even if
68+
// both 6774166 and 6774170 aren't fixed. If it happens
6969
// however, it might indicate that neither defects are fixed.
7070

7171
if (x instanceof NullPointerException) {
7272
throw new Exception(message + " - " +
73-
"Congratulations! it seems you have triggered 6674166. " +
74-
"Neither 6674166 nor 6774170 seem to be fixed: " + x, x);
73+
"Congratulations! it seems you have triggered 6774166. " +
74+
"Neither 6774166 nor 6774170 seem to be fixed: " + x, x);
7575
} else if (x instanceof IOException) {
7676
throw new Exception(message + " - " +
77-
"Unexpected IOException. Maybe you triggered 6674166? " +
77+
"Unexpected IOException. Maybe you triggered 6774166? " +
7878
x, x);
7979
} else if (x != null) {
8080
throw new Exception(message + " - " +

0 commit comments

Comments
 (0)