Polish formatting

This commit is contained in:
Phillip Webb
2016-12-19 10:30:48 -08:00
parent e578ace7d7
commit bd74c3d327
346 changed files with 578 additions and 53 deletions

View File

@@ -62,6 +62,7 @@ public class TestProject {
* incremental builds.
*/
private File sourceFolder;
private TestCompiler compiler;
private Set<File> sourceFiles = new LinkedHashSet<File>();
@@ -202,4 +203,5 @@ public class TestProject {
private static String getContents(File file) throws Exception {
return FileCopyUtils.copyToString(new FileReader(file));
}
}

View File

@@ -53,4 +53,5 @@ public class BarProperties {
public void setCounter(Integer counter) {
this.counter = counter;
}
}

View File

@@ -53,4 +53,5 @@ public class RenamedBarProperties {
public void setCounter(Integer counter) {
this.counter = counter;
}
}

View File

@@ -57,7 +57,9 @@ public class LombokInnerClassProperties {
}
public enum Fourth {
YES, NO
}
}

View File

@@ -62,6 +62,7 @@ public class MethodAndClassConfig {
public void setFlag(boolean flag) {
this.flag = flag;
}
}
}

View File

@@ -51,6 +51,7 @@ public class SimpleMethodConfig {
public void setFlag(boolean flag) {
this.flag = flag;
}
}
}

View File

@@ -36,4 +36,5 @@ public class BuilderPojo {
this.name = name;
return this;
}
}

View File

@@ -67,6 +67,7 @@ public class GenericConfig<T> {
public Map<String, Integer> getStringToInteger() {
return this.stringToInteger;
}
}
public static class Bar<U> {
@@ -99,6 +100,7 @@ public class GenericConfig<T> {
public void setName(String name) {
this.name = name;
}
}
}

View File

@@ -89,12 +89,15 @@ public class InnerClassProperties {
public void setName(String name) {
this.name = name;
}
}
}
public enum Fourth {
YES, NO
}
}

View File

@@ -37,6 +37,7 @@ public class InnerClassRootConfig {
public void setName(String name) {
this.name = name;
}
}
}

View File

@@ -42,6 +42,7 @@ public class InvalidDoubleRegistrationProperties {
public void setName(String name) {
this.name = name;
}
}
}