Thread: iLiad RTFToIliad tool
View Single Post
Old 10-24-2006, 01:02 PM   #5
rpink
Junior Member
rpink began at the beginning.
 
rpink's Avatar
 
Posts: 7
Karma: 10
Join Date: Oct 2006
Location: Germany
Device: Simpad / Rocket eBook / TabletPC / iLiad / K800i / Cybooke
compile issue and fix

Hi scotty1024,

yust tryed to compile and got 2 errors where a explicit typecast was missing.
For the ones who donīt know java enough.

Problem:
RTFPullParser.java:247: isDigit(char) in java.lang.Character cannot be applied to (int)
} else if (Character.isDigit(c) ||
^
RTFPullParser.java:268: isDigit(char) in java.lang.Character cannot be applied to (int)
} else if (Character.isDigit(c)) {

fixed it with
RTFPullParser.java:247: isDigit(char) in java.lang.Character cannot be applied to (int)
} else if (Character.isDigit((char)c) ||
^
RTFPullParser.java:268: isDigit(char) in java.lang.Character cannot be applied to (int)
} else if (Character.isDigit((char)c)) {

So now i have probaly a missing font, later more.
rpink is offline   Reply With Quote