Skip to content

Commit 5b80052

Browse files
committed
[jvm] Remove dead code
All of those methods have been replaced with a version that honors ThreadContext.
1 parent f6bccf7 commit 5b80052

File tree

1 file changed

+0
-10
lines changed
  • src/vm/jvm/runtime/org/perl6/nqp/runtime

1 file changed

+0
-10
lines changed

src/vm/jvm/runtime/org/perl6/nqp/runtime/Ops.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2445,13 +2445,6 @@ public static SixModelObject multicachefind(SixModelObject cache, SixModelObject
24452445
return null;
24462446
}
24472447

2448-
public static long where(SixModelObject o) {
2449-
return o.hashCode();
2450-
}
2451-
public static SixModelObject setwho(SixModelObject o, SixModelObject who) {
2452-
o.st.WHO = who;
2453-
return o;
2454-
}
24552448
public static SixModelObject what(SixModelObject o, ThreadContext tc) {
24562449
return decont(o, tc).st.WHAT;
24572450
}
@@ -2584,9 +2577,6 @@ public static long isnull(SixModelObject obj) {
25842577
public static long isnull_s(String str) {
25852578
return str == null ? 1 : 0;
25862579
}
2587-
public static String reprname(SixModelObject obj) {
2588-
return obj.st.REPR.name;
2589-
}
25902580
public static String reprname(SixModelObject obj, ThreadContext tc) {
25912581
return decont(obj, tc).st.REPR.name;
25922582
}

0 commit comments

Comments
 (0)