--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Pool.java Wed Apr 11 11:11:13 2018 -0700
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/Pool.java Wed Apr 11 14:52:32 2018 -0400
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -180,10 +180,10 @@
}
}
- static class DynamicMethod extends Method {
+ public static class DynamicMethod extends Method {
public Object[] uniqueStaticArgs;
- DynamicMethod(DynamicMethodSymbol m, Types types) {
+ public DynamicMethod(DynamicMethodSymbol m, Types types) {
super(m, types);
uniqueStaticArgs = getUniqueTypeArray(m.staticArgs, types);
}