OpenJDK / jdk-updates / jdk12u
changeset 2590:52b974d64f18
6829098: Regression test java/security/Security/ClassLoaderDeadlock/Deadlock2.java error - missing ";"
Summary: Added back the missing ";"
Reviewed-by: weijun
author | valeriep |
---|---|
date | Mon, 13 Apr 2009 18:20:51 -0700 |
parents | af4853bc7e87 |
children | 6ef824d6d5c2 76032557be03 |
files | jdk/test/java/security/Security/ClassLoaderDeadlock/Deadlock2.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/test/java/security/Security/ClassLoaderDeadlock/Deadlock2.java Sun Apr 12 20:21:43 2009 -0700 +++ b/jdk/test/java/security/Security/ClassLoaderDeadlock/Deadlock2.java Mon Apr 13 18:20:51 2009 -0700 @@ -56,7 +56,7 @@ e.printStackTrace(); } } - } + }; Thread thread1 = new Thread(readObjectRunnable, "Read Object"); Thread thread2 = new Thread(xmlRunnable, "XML");