Finalizing the beta version of the implementation for Groovy extension in JPF: JPF...
[jpf-core.git] / src / main / gov / nasa / jpf / vm / Types.java
index c0edb793f6b50be7e2425f34571dda6231862d6b..313e8aab7d0fb0f01027262c8ea64abc1ea0fe91 100644 (file)
@@ -1211,7 +1211,6 @@ public class Types {
     return arrTypeVarNames;
   }
 
-  // TODO: Fix for Groovy's model-checking
   public static String[] getParameterizedTypes(String signature) {
     int pos = signature.indexOf('<', 0);
     if (pos == -1)
@@ -1311,7 +1310,6 @@ public class Types {
     }
 
     String cleanSig = signature.replaceAll("\\+|-", "");
-    // This kind of signature should be a repetition of its class' type parameter, e.g., TT for Class<T>
     if (cleanSig.length()%2 != 0) {
       // This is probably a class, e.g., +java.lang.Class
       return signature;