Drop _test_only_get_ptr as it is no longer used
authorMatt Corallo <git@bluematt.me>
Sat, 12 Jun 2021 21:47:48 +0000 (21:47 +0000)
committerMatt <matt@Matts-iMac-Pro.local>
Tue, 15 Jun 2021 20:38:08 +0000 (16:38 -0400)
java_strings.py

index 3d5a2a0150cd1c5680d6a51495e27183a93e5ba9..624f46d5c192e5c3039996bd6a88e58e76bfd44f 100644 (file)
@@ -83,7 +83,6 @@ class CommonBase {
        long ptr;
        LinkedList<Object> ptrs_to = new LinkedList();
        protected CommonBase(long ptr) { this.ptr = ptr; }
-       public long _test_only_get_ptr() { return this.ptr; }
 }
 """