This is the method where the compiler gives me an error that I'm not able to understand...
private String removeQuotes(String myString) {
myString.trim();
if (myString.startsWith("\"")) {
myString = myString.substring(1);
}
if (myString.endsWith("\"")) {
myString = myString.substring(0, myString.length() - 1);
}
return myString;
}
What's the problem? o_O
Message was edited by:
Lukyan