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

@@ -39,7 +39,6 @@ public final class BuildPropertiesWriter {
/**
* Creates a new {@code BuildPropertiesWriter} that will write to the given
* {@code outputFile}.
*
* @param outputFile the output file
*/
public BuildPropertiesWriter(File outputFile) {
@@ -168,4 +167,5 @@ public final class BuildPropertiesWriter {
}
}
}

View File

@@ -89,4 +89,5 @@ public abstract class FileUtils {
}
return hex.toString();
}
}

View File

@@ -346,6 +346,7 @@ public class JarWriter {
public boolean hasZipHeader() {
return Arrays.equals(this.header, ZIP_HEADER);
}
}
/**
@@ -386,6 +387,7 @@ public class JarWriter {
entry.setCrc(this.crc.getValue());
entry.setMethod(ZipEntry.STORED);
}
}
/**

View File

@@ -39,10 +39,13 @@ public abstract class LogbackInitializer {
}
private static class Initializer {
public void setRootLogLevel() {
ILoggerFactory factory = StaticLoggerBinder.getSingleton().getLoggerFactory();
Logger logger = factory.getLogger(Logger.ROOT_LOGGER_NAME);
((ch.qos.logback.classic.Logger) logger).setLevel(Level.INFO);
}
}
}

View File

@@ -315,6 +315,7 @@ public abstract class MainClassFinder {
/**
* Callback interface used to receive class names.
*
* @param <T> the result type
*/
public interface ClassNameCallback<T> {

View File

@@ -59,6 +59,7 @@ public class RepackagerTests {
};
private static final long JAN_1_1980;
private static final long JAN_1_1985;
static {