#Getting an Error and I'm Not Sure Why.
1 messages · Page 1 of 1 (latest)
<@&987246527741304832> please have a look, thanks.
Simple answer, WordUtils isn't available
if you added the library, and that class does exist in the library, then something with how the editor tries to run your code is off
otherwise, thats not there
is there a way i could check if i added WordUtils right? how familiar are you with EclipseIDE?
Honestly not very
I used eclipse in college but IntelliJ Community in all my Java-related jobs aferwards
Seems like that lib made it to the compile path but not the runtime path. Google how to add lib to runtime path in eclipse maybe. Why suppress deprecated? Maybe the runtime lib is not the same version as compile lib? and the runtime lib is newer and that WordUtil is fully deprecated and gone now. Just speculating.
Also dont use deprecated methods, and don't ignore or suppress warnings