Browse Source

- removed orphan helpers

git-svn-id: branches/jvmbackend@18533 -
Jonas Maebe 14 years ago
parent
commit
2610cea230
1 changed files with 0 additions and 23 deletions
  1. 0 23
      compiler/pjvm.pas

+ 0 - 23
compiler/pjvm.pas

@@ -212,27 +212,4 @@ implementation
           end;
           end;
       end;
       end;
 
 
-{******************************************************************
-                    jvm type validity checking
-*******************************************************************}
-
-   function jvmencodetype(def: tdef): string;
-     var
-       errordef: tdef;
-     begin
-       if not jvmtryencodetype(def,result,errordef) then
-         internalerror(2011012305);
-     end;
-
-
-   function jvmchecktype(def: tdef; out founderror: tdef): boolean;
-      var
-        encodedtype: string;
-      begin
-        { don't duplicate the code like in objcdef, since the resulting strings
-          are much shorter here so it's not worth it }
-        result:=jvmtryencodetype(def,encodedtype,founderror);
-      end;
-
-
 end.
 end.