Sorry, but I am super new with Java. I am attempting to update information in a .jar that someone else made years ago. It's essentially a searching program. I tried to compile the .java file, but it threw a "illegal start of expression" error at me and I can't seem to find where the error is. This is the portion of code is getting me at (error under the first "p"). There obviously a lot more code above this since this is at the end of the string, but like I said I'm pretty new... so not sure if this is the real problem or not
this.route.setText(this.prefRoute);
}
public static void main(String[] args) {
RouteFinder rtf = new RouteFinder();
}
}```