Open charlotteatwork opened 8 years ago
Hi, please take a look at my issue 14 and check if it is the same (it is if you have a lambda expression in your code, like array.forEach((position) -> {doSomething();});
)
You can temporarily fix it by removing the lambda expression, if that's the problem.
No, I did not use any lambda expression in my code.
I used to write like: for (String tempString : checkboxValueArray) { if (CommonConstant.MAIN_CNT_GROUP_ID.equals(tempString)) { hasMainContract = true; } }
Same problem here
Same problem with version 3.2.2
I have the same question. Because I used mybatis-plus, I used "LambdaQueryWrapper" or sth similar.
So I comment 2 lines wherever it appears. And then the file can be imported successfully.
// LambdaUpdateWrapper<StudentEntity> wrapper=new LambdaUpdateWrapper<>();
// wrapper.eq(StudentEntity::getStudentId,id).set(StudentEntity::getGender,gender);
I have 14 java files in one package, but only 4 got reversed to classes.