Reputation: 679
When using Eclipse's debug feature, I get "Sourcepath not found" for String.replace(). It was working perfectly fine last night and I haven't changed anything other than the code it's self.
msg = msg.replace("[bold]",config.tags[1]);
is what's triggering it by the looks of it.
Upvotes: 1
Views: 237
Reputation: 19443
Check that your Java VM settings in your preferences are what you expect and they are pointed to a JDK that has the source available. Maybe something in your Java environment changed.
Upvotes: 2