Browse Source

* Removed inttostr, isvalidident so sysutils versions are used.

git-svn-id: trunk@6984 -
michael 18 years ago
parent
commit
f60fbbb01b
1 changed files with 0 additions and 13 deletions
  1. 0 13
      rtl/objpas/classes/util.inc

+ 0 - 13
rtl/objpas/classes/util.inc

@@ -11,19 +11,6 @@
 
  **********************************************************************}
 
-Function IntToStr (I : Longint) : String;
-
-begin
-  Str(I,Result);
-end;
-
-function IsValidIdent(const Ident: string): Boolean;
-
-begin
-  Result:=True;
-end;
-
-
 procedure BinToHex(BinValue, HexValue: PChar; BinBufSize: Integer);
 Const
   HexDigits='0123456789ABCDEF';