vote up 1 vote down star

Got this error today while trying to build a project with checkstyle. This works for other people in my office but I would rather not reinstall Eclipse yet again. Any idea what this error actually means?

Errors occurred during the build.
 Errors running builder 'Checkstyle Builder' on project 'myproject'.
  cannot initialize module TreeWalker - Unable to instantiate TabCharacter
  cannot initialize module TreeWalker - Unable to instantiate TabCharacter
 cannot initialize module TreeWalker - Unable to instantiate TabCharacter
 cannot initialize module TreeWalker - Unable to instantiate TabCharacter

I'm gathering that it has something to do with the tab character but not much else.

UPDATE: Version of Eclipse is 3.5, Checkstyle is 5.0.0.200906281855-final.

(Java is jdk 1.6.0_10)

flag

"Checkstyle is 5.0.0" means TabCharacter is no longer available: you need to update your Checkstyle configuration file, and double-check what version of Checkstyle the "other people" are using. – VonC Jul 31 at 12:13

1 Answer

vote up 2 vote down check

What version of Checkstyle are you using (while we are at it, what version of eclipse, Checkstyle plugin, java?)

As mentioned in this bug, Checkstyle Plugin version 5.0.0.200906281855:

Release notes of Checkstyle 5 state that some of the modules and checks we are using are not backwards compatible.
E.g. the module TabCharacter does not occur in v5 any more (was replaced by FileTabCharacter), hence can't work.
The check FileLength does not require a syntax tree, hence is not any longer under parent TreeWalker.

That means your issue could be with an automatic update of the Checkstyle plugin in your eclipse configuration.

link|flag
Updated my question with versions. – Stefan Thyberg Jul 31 at 12:09
Found the problem and it was indeed this. Apparently I'm a version of checkstyle ahead of others. Modified checkstyle.xml to fit 5.0.0, thanks for the help. – Stefan Thyberg Jul 31 at 12:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.