File tree 2 files changed +14
-13
lines changed
2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 28
28
import java .util .HashMap ;
29
29
import java .util .Map ;
30
30
31
- import sun .reflect .CallerSensitive ;
32
- import sun .reflect .Reflection ;
31
+ // import sun.reflect.CallerSensitive;
32
+ // import sun.reflect.Reflection;
33
33
34
34
import org .cprover .CProver ;
35
35
import org .cprover .CProverString ;
@@ -179,16 +179,17 @@ public String getName() {
179
179
* @see SecurityManager#checkPermission
180
180
* @see java.lang.RuntimePermission
181
181
*/
182
- @ CallerSensitive
182
+ // @CallerSensitive
183
183
public ClassLoader getClassLoader () {
184
- ClassLoader cl = getClassLoader0 ();
185
- if (cl == null )
186
- return null ;
187
- SecurityManager sm = System .getSecurityManager ();
188
- if (sm != null ) {
189
- ClassLoader .checkClassLoaderPermission (cl , Reflection .getCallerClass ());
190
- }
191
- return cl ;
184
+ // ClassLoader cl = getClassLoader0();
185
+ // if (cl == null)
186
+ // return null;
187
+ // SecurityManager sm = System.getSecurityManager();
188
+ // if (sm != null) {
189
+ // ClassLoader.checkClassLoaderPermission(cl, Reflection.getCallerClass());
190
+ // }
191
+ // return cl;
192
+ return null ;
192
193
}
193
194
194
195
ClassLoader getClassLoader0 () {
Original file line number Diff line number Diff line change 26
26
package java .lang ;
27
27
import java .util .Random ;
28
28
29
- import sun .misc .FloatConsts ;
30
- import sun .misc .DoubleConsts ;
29
+ // import sun.misc.FloatConsts;
30
+ // import sun.misc.DoubleConsts;
31
31
32
32
import org .cprover .CProver ;
33
33
You can’t perform that action at this time.
0 commit comments