1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-02 22:05:44 +02:00

Fix the build.

This commit is contained in:
Doug Schaefer 2003-09-19 13:50:48 +00:00
parent eaab8181d0
commit 313f632a5d

View file

@ -46,7 +46,7 @@ public class Util {
}
public static int indexOf(String line, char c) {
return indexOf(line, Character.toString(c));
return indexOf(line, new Character(c).toString());
}
/**