Remote trailing whitespace

This commit is contained in:
Phillip Webb
2014-07-02 14:43:43 -07:00
parent 20766078d0
commit fa88c481a5
875 changed files with 958 additions and 958 deletions

View File

@@ -23,7 +23,7 @@ import java.util.List;
/**
* Utility class to attach an instrumentation agent to the running JVM.
*
*
* @author Dave Syer
*/
public abstract class AgentAttacher {

View File

@@ -25,7 +25,7 @@ import java.security.NoSuchAlgorithmException;
/**
* Utilities for manipulating files and directories in Spring Boot tooling.
*
*
* @author Dave Syer
* @author Phillip Webb
*/

View File

@@ -42,7 +42,7 @@ import java.util.zip.ZipEntry;
/**
* Writes JAR content, ensuring valid directory entries are always create and duplicate
* items are ignored.
*
*
* @author Phillip Webb
* @author Andy Wilkinson
*/

View File

@@ -25,7 +25,7 @@ import org.springframework.util.StringUtils;
/**
* Provides access to the java binary executable, regardless of OS.
*
*
* @author Phillip Webb
* @since 1.1.0
*/

View File

@@ -23,7 +23,7 @@ import java.net.URLClassLoader;
/**
* Java Virtual Machine Utils.
*
*
* @author Phillip Webb
*/
abstract class JvmUtils {

View File

@@ -18,7 +18,7 @@ package org.springframework.boot.loader.tools;
/**
* Strategy interface used to determine the layout for a particular type of archive.
*
*
* @author Phillip Webb
* @see Layouts
*/

View File

@@ -23,7 +23,7 @@ import java.util.Map;
/**
* Common {@link Layout}s.
*
*
* @author Phillip Webb
* @author Dave Syer
*/

View File

@@ -20,7 +20,7 @@ import java.io.IOException;
/**
* Encapsulates information about libraries that may be packed into the archive.
*
*
* @author Phillip Webb
*/
public interface Libraries {

View File

@@ -20,7 +20,7 @@ import java.io.File;
/**
* Encapsulates information about a single library that may be packed into the archive.
*
*
* @author Phillip Webb
* @since 1.1.2
* @see Libraries

View File

@@ -21,7 +21,7 @@ import java.io.IOException;
/**
* Callback interface used to iterate {@link Libraries}.
*
*
* @author Phillip Webb
*/
public interface LibraryCallback {

View File

@@ -20,7 +20,7 @@ package org.springframework.boot.loader.tools;
* The scope of a library. The common {@link #COMPILE}, {@link #RUNTIME} and
* {@link #PROVIDED} scopes are defined here and supported by the common {@link Layouts}.
* A custom {@link Layout} can handle additional scopes as required.
*
*
* @author Phillip Webb
*/
public interface LibraryScope {

View File

@@ -25,7 +25,7 @@ import ch.qos.logback.classic.Level;
/**
* Utility to initialize logback (when present) to use INFO level logging.
*
*
* @author Dave Syer
* @since 1.1.0
*/

View File

@@ -44,7 +44,7 @@ import org.springframework.asm.Type;
/**
* Finds any class with a {@code public static main} method by performing a breadth first
* search.
*
*
* @author Phillip Webb
*/
public abstract class MainClassFinder {

View File

@@ -26,7 +26,7 @@ import java.util.jar.Manifest;
/**
* Utility class that can be used to repackage an archive so that it can be executed using
* '{@literal java -jar}'.
*
*
* @author Phillip Webb
*/
public class Repackager {

View File

@@ -27,7 +27,7 @@ import org.springframework.util.ReflectionUtils;
/**
* Utility used to run a process.
*
*
* @author Phillip Webb
* @author Dave Syer
* @author Andy Wilkinson

View File

@@ -21,7 +21,7 @@ import sun.misc.SignalHandler;
/**
* Utilities for working with signal handling.
*
*
* @author Dave Syer
* @since 1.1.0
*/

View File

@@ -34,7 +34,7 @@ import static org.junit.Assert.assertTrue;
/**
* Tests fir {@link FileUtils}.
*
*
* @author Dave Syer
* @author Phillip Webb
*/

View File

@@ -27,7 +27,7 @@ import static org.junit.Assert.assertThat;
/**
* Tests for {@link JvmUtils}.
*
*
* @author Phillip Webb
*/
public class JvmUtilsTests {

View File

@@ -28,7 +28,7 @@ import static org.junit.Assert.assertThat;
/**
* Tests for {@link Layouts}.
*
*
* @author Phillip Webb
*/
public class LayoutsTests {

View File

@@ -34,7 +34,7 @@ import static org.junit.Assert.assertThat;
/**
* Tests for {@link MainClassFinder}.
*
*
* @author Phillip Webb
*/
public class MainClassFinderTests {

View File

@@ -43,7 +43,7 @@ import static org.mockito.Mockito.mock;
/**
* Tests for {@link Repackager}.
*
*
* @author Phillip Webb
* @author Andy Wilkinson
*/

View File

@@ -18,7 +18,7 @@ package org.springframework.boot.loader.tools.sample;
/**
* Sample class with a main method.
*
*
* @author Phillip Webb
*/
public class ClassWithMainMethod {

View File

@@ -18,7 +18,7 @@ package org.springframework.boot.loader.tools.sample;
/**
* Sample class without a main method.
*
*
* @author Phillip Webb
*/
public class ClassWithoutMainMethod {