소스 검색

- removed orphan helpers

git-svn-id: branches/jvmbackend@18533 -
Jonas Maebe 14 년 전
부모
커밋
2610cea230
1개의 변경된 파일0개의 추가작업 그리고 23개의 파일을 삭제
  1. 0 23
      compiler/pjvm.pas

+ 0 - 23
compiler/pjvm.pas

@@ -212,27 +212,4 @@ implementation
           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.