inlined methods to get prefetch benefits from the benchmark
[IRC.git] / Robust / src / Benchmarks / Distributed / SpamFilter / GString.java
index 89726a3d6d977350640f50c4d820177c06fe84e2..3b1b8f366c7e54e86e797c3cc07123c941e91282 100644 (file)
@@ -27,6 +27,7 @@ public class GString {
     this.offset = gstr.offset;
   }
 
+  /*
   public GString(StringBuffer gsb) {
     value = global new char[gsb.length()];
     count = gsb.length();
@@ -34,6 +35,7 @@ public class GString {
     for (int i = 0; i < count; i++) 
       value[i] = gsb.value[i];
   }
+  */
 
   public GString(char str[]) {
     char charstr[]=new char[str.length];