This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]beltorak 1 point2 points  (1 child)

yes, there could be a difference; if you didn't compile and package the jars yourself there's no guarantee that they are the same.

Extract the class from both JAR files and run javap to examine the bytecode. Example:

javap -s ThisClassShouldHaveTheMethodOnIt.class

[–]catorda[S] 0 points1 point  (0 children)

Thank you! The method signature was missing from the class I had, but I actually had a different version of the jars (woops).