EgorKulikov / idea-chelper

Automatically exported from code.google.com/p/idea-chelper
112 stars 59 forks source link

detail mistake in the codes, check it out. #46

Closed scruel closed 6 years ago

scruel commented 7 years ago

In class "TokenChecker" the constructor your guys wrote were follows:

if(tokens[0].toLowerCase().indexOf(97) != -1) { this.allowAbsolute = true; }

if(tokens[0].toLowerCase().indexOf(114) != -1) { this.allowAbsolute = true; }

For the second if statement, the content should be this.allowRelative= true;