I get the following error
Driver.java:237: cannot find symbol
symbol : method parseInt(char)
location: class java.lang.Integer
int bp = Integer.parseInt(b);
when using this code
char p = switchchar.charAt(6);
char b = switchchar.charAt(7);
int pp = Integer.parseInt(p);
int bp = Integer.parseInt(b);
In the documentation it says the method should be there?