Fabrice-TIERCELIN on master
Handle findFirst() and findAny() (compare)
Fabrice-TIERCELIN on master
Fix error message in ASTNodes.j… (compare)
Fabrice-TIERCELIN on master
Improve MAVEN build Performance (compare)
Fabrice-TIERCELIN on master
Separate analyze and refactoring (compare)
Fabrice-TIERCELIN on master
Closes #492; Only use methods i… (compare)
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-compiler-plugin:0.23.1:compile (default-compile) on project org.autorefactor.plugin: Compilation failure: Compilation failure:
[ERROR] /home/travis/build/JnRouvignac/AutoRefactor/plugin/src/main/java/org/autorefactor/refactoring/ASTBuilder.java:[421]
[ERROR] modifiers(vde).add(final0());
[ERROR] ^^^^^^^^^
[ERROR] The method modifiers(IExtendedModifier...) in the type ASTBuilder is not applicable for the arguments (VariableDeclarationExpression)
[ERROR] 1 problem (1 error)
[ERROR] -> [Help 1]
declareExpr
is not mine: public VariableDeclarationExpression declareExpr(Type type, SimpleName varName, Expression initializer) {
final VariableDeclarationFragment fragment = declareFragment(varName, initializer);
final VariableDeclarationExpression vde = ast.newVariableDeclarationExpression(fragment);
modifiers(vde).add(final0());
vde.setType(type);
return vde;
}
modifiers
method I wonder if it was pointing to a different modifiers
method before..