cal
cal
**Describe the bug** I am using the cache plugin to cache an .m2 directory. Too often the cache gets corrupted. Assuming that gnu tar should be able to read the...
When formatting ``` class Formatting { StringBuilder m1() { return new StringBuilder(); } StringBuilder m2(String p1, StringBuilder p2) { return new StringBuilder(); } def main(args) { println(m1(). append("a"). append("b"). append("c")....
Happens when applying to ``` class Object{Object(){while(true){}// }} ```
The input ``` this.hashFunc = key -> { //默认使用FNV1hash算法 return HashUtil.fnvHash(key.toString()); }; ``` becomes ``` this.hashFunc = key -> HashUtil.fnvHash(key.toString()); ``` @Fabrice-TIERCELIN I read your ticket about important/not important comments...
A funny one. App.java: ``` ... private static final String ALL_CUSTOMERS = "customerDao.getAllCustomers(): "; ... customerDao.add(customer); - log.info(ALL_CUSTOMERS + customerDao.getAll()); + log.info(); ``` With CustomerDao: ``` ... /** * Get...
Standard eclipse refactorings like "renameMethod" require coordinated changes to multiple files. I want to write some refactorings requiring coordinated changes, too. As a proof of concept I tried to write...
Hi! Sometimes AutoRefactorings have bugs that are difficult to fix or are not yet fixed. Often those bugs come to surface only on very few compilation units. But the concrete...
Hi again! I was surprised about the good results of the comments refactoring. There is one kind of change I would like to suppress: If one or a bunch of...
``` public void checkState(int state) { switch (state) { case 1: - // ok - break; - - case 2: - case 3: - // do not care here because...
``` - ; - // @formatter:on ``` I am running this refactoring together with RemoveEmptyStatementRefactoring so there may be some relation.