* removed unused variables

* char -> ansichar

git-svn-id: branches/jvmbackend@18568 -
This commit is contained in:
Jonas Maebe 2011-08-20 08:11:17 +00:00
parent 87f812c778
commit 13cf0e031e

View File

@ -579,7 +579,7 @@ end;
{ pos(c: char; const s: shortstring) also exists, so otherwise }
{ using pos(char,pchar) will always call the shortstring version }
{ (exact match for first argument), also with $h+ (JM) }
Function Pos (c : Char; Const s : AnsiString) : SizeInt;
Function Pos (c : AnsiChar; Const s : AnsiString) : SizeInt;
var
i: SizeInt;
begin
@ -844,7 +844,6 @@ end;
function upcase(const s : ansistring) : ansistring;
var
i : SizeInt;
u : unicodestring;
begin
u:=s;
@ -854,7 +853,6 @@ end;
function lowercase(const s : ansistring) : ansistring;
var
i : SizeInt;
u : unicodestring;
begin
u:=s;