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

@@ -30,7 +30,7 @@ import org.springframework.boot.loader.archive.Archive.EntryFilter;
/**
* Base class for executable archive {@link Launcher}s.
*
*
* @author Phillip Webb
* @author Andy Wilkinson
*/

View File

@@ -30,7 +30,7 @@ import java.util.Set;
/**
* A {@link JavaAgentDetector} that detects jars supplied via the {@code -javaagent} JVM
* input argument.
*
*
* @author Andy Wilkinson
* @since 1.1.0
*/

View File

@@ -24,7 +24,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
/**
* {@link Launcher} for JAR based archives. This launcher assumes that dependency jars are
* included inside a {@code /lib} directory.
*
*
* @author Phillip Webb
*/
public class JarLauncher extends ExecutableArchiveLauncher {

View File

@@ -20,7 +20,7 @@ import java.net.URL;
/**
* A strategy for detecting Java agents
*
*
* @author Andy Wilkinson
* @since 1.1.0
*/

View File

@@ -30,7 +30,7 @@ import org.springframework.boot.loader.jar.JarFile;
/**
* {@link ClassLoader} used by the {@link Launcher}.
*
*
* @author Phillip Webb
* @author Dave Syer
*/

View File

@@ -34,7 +34,7 @@ import org.springframework.boot.loader.jar.JarFile;
/**
* Base class for launchers that can start an application with a fully configured
* classpath backed by one or more {@link Archive}s.
*
*
* @author Phillip Webb
* @author Dave Syer
*/

View File

@@ -21,7 +21,7 @@ import java.lang.reflect.Method;
/**
* Utility class that used by {@link Launcher}s to call a main method. This class allows
* methods to be executed within a thread configured with a specific context class loader.
*
*
* @author Phillip Webb
*/
public class MainMethodRunner implements Runnable {

View File

@@ -69,7 +69,7 @@ import org.springframework.boot.loader.util.SystemPropertyUtils;
* <code>Start-Class</code> in a <code>MANIFEST.MF</code>, if there is one in
* <code>${loader.home}/META-INF</code>.</li>
* </ul>
*
*
* @author Dave Syer
* @author Janne Valkealahti
*/

View File

@@ -26,7 +26,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
* {@link Launcher} for WAR based archives. This launcher for standard WAR archives.
* Supports dependencies in {@code WEB-INF/lib} as well as {@code WEB-INF/lib-provided},
* classes are loaded from {@code WEB-INF/classes}.
*
*
* @author Phillip Webb
*/
public class WarLauncher extends ExecutableArchiveLauncher {

View File

@@ -28,7 +28,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
/**
* An archive that can be launched by the {@link Launcher}.
*
*
* @author Phillip Webb
* @see JarFileArchive
*/

View File

@@ -39,7 +39,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
/**
* {@link Archive} implementation backed by an exploded archive directory.
*
*
* @author Phillip Webb
*/
public class ExplodedArchive extends Archive {

View File

@@ -29,7 +29,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
/**
* Decorator to apply an {@link Archive.EntryFilter} to an existing {@link Archive}.
*
*
* @author Dave Syer
*/
public class FilteredArchive extends Archive {

View File

@@ -38,7 +38,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
/**
* {@link Archive} implementation backed by a {@link JarFile}.
*
*
* @author Phillip Webb
*/
public class JarFileArchive extends Archive {

View File

@@ -21,7 +21,7 @@ import java.io.InputStream;
/**
* {@link RandomAccessData} implementation backed by a byte array.
*
*
* @author Phillip Webb
*/
public class ByteArrayRandomAccessData implements RandomAccessData {

View File

@@ -22,7 +22,7 @@ import java.io.InputStream;
/**
* Interface that provides read-only random access to some underlying data.
* Implementations must allow concurrent reads in a thread-safe manner.
*
*
* @author Phillip Webb
*/
public interface RandomAccessData {

View File

@@ -26,7 +26,7 @@ import java.util.concurrent.Semaphore;
/**
* {@link RandomAccessData} implementation backed by a {@link RandomAccessFile}.
*
*
* @author Phillip Webb
*/
public class RandomAccessDataFile implements RandomAccessData {

View File

@@ -24,7 +24,7 @@ import org.springframework.boot.loader.data.RandomAccessData.ResourceAccess;
/**
* Utilities for dealing with bytes from ZIP files.
*
*
* @author Phillip Webb
*/
class Bytes {

View File

@@ -22,7 +22,7 @@ import org.springframework.boot.loader.data.RandomAccessData;
/**
* A ZIP File "End of central directory record" (EOCD).
*
*
* @author Phillip Webb
* @see <a href="http://en.wikipedia.org/wiki/Zip_%28file_format%29">Zip File Format</a>
*/

View File

@@ -32,7 +32,7 @@ import java.util.logging.Logger;
/**
* {@link URLStreamHandler} for Spring Boot loader {@link JarFile}s.
*
*
* @author Phillip Webb
* @see JarFile#registerUrlProtocolHandler()
*/

View File

@@ -26,7 +26,7 @@ import java.util.jar.Manifest;
/**
* Extended variant of {@link java.util.jar.JarEntry} returned by {@link JarFile}s.
*
*
* @author Phillip Webb
*/
public class JarEntry extends java.util.jar.JarEntry {

View File

@@ -28,7 +28,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
/**
* Holds the underlying data of a {@link JarEntry}, allowing creation to be deferred until
* the entry is actually needed.
*
*
* @author Phillip Webb
*/
public final class JarEntryData {

View File

@@ -20,7 +20,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
/**
* Interface that can be used to filter and optionally rename jar entries.
*
*
* @author Phillip Webb
*/
public interface JarEntryFilter {

View File

@@ -51,7 +51,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
* embedded JAR files (as long as their entry is not compressed).</li>
* <li>Entry data can be accessed as {@link RandomAccessData}.</li>
* </ul>
*
*
* @author Phillip Webb
*/
public class JarFile extends java.util.jar.JarFile implements Iterable<JarEntryData> {

View File

@@ -30,7 +30,7 @@ import org.springframework.boot.loader.util.AsciiBytes;
/**
* {@link java.net.JarURLConnection} used to support {@link JarFile#getUrl()}.
*
*
* @author Phillip Webb
*/
class JarURLConnection extends java.net.JarURLConnection {

View File

@@ -25,7 +25,7 @@ import java.util.zip.InflaterInputStream;
/**
* {@link InflaterInputStream} that supports the writing of an extra "dummy" byte (which
* is required with JDK 6) and returns accurate available() results.
*
*
* @author Phillip Webb
*/
class ZipInflaterInputStream extends InflaterInputStream {

View File

@@ -21,7 +21,7 @@ import java.nio.charset.Charset;
/**
* Simple wrapper around a byte array that represents an ASCII. Used for performance
* reasons to save constructing Strings for ZIP data.
*
*
* @author Phillip Webb
*/
public final class AsciiBytes {

View File

@@ -28,11 +28,11 @@ import java.util.Set;
* between key and value.
* <p>
* Adapted from Spring.
*
*
* @author Juergen Hoeller
* @author Rob Harrop
* @author Dave Syer
*
*
* @see System#getProperty(String)
*/
public abstract class SystemPropertyUtils {

View File

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

View File

@@ -21,7 +21,7 @@ import org.hamcrest.TypeSafeMatcher;
/**
* Hamcrest matcher to tests that a byte array starts with specific bytes.
*
*
* @author Phillip Webb
*/
public class ByteArrayStartsWith extends TypeSafeMatcher<byte[]> {

View File

@@ -33,7 +33,7 @@ import static org.mockito.Mockito.when;
/**
* Tests for {@link ExecutableArchiveLauncher}
*
*
* @author Andy Wilkinson
*/
public class ExecutableArchiveLauncherTests {

View File

@@ -28,7 +28,7 @@ import static org.junit.Assert.assertTrue;
/**
* Tests for {@link InputArgumentsJavaAgentDetector}
*
*
* @author Andy Wilkinson
*/
public class InputArgumentsJavaAgentDetectorTests {

View File

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

View File

@@ -27,7 +27,7 @@ import org.junit.runners.model.Statement;
/**
* Capture output from System.out and System.err.
*
*
* @author Phillip Webb
*/
public class OutputCapture implements TestRule {

View File

@@ -37,7 +37,7 @@ import static org.junit.Assert.assertTrue;
/**
* Tests for {@link PropertiesLauncher}.
*
*
* @author Dave Syer
*/
public class PropertiesLauncherTests {

View File

@@ -29,7 +29,7 @@ import java.util.zip.ZipEntry;
/**
* Creates a simple test jar.
*
*
* @author Phillip Webb
*/
public abstract class TestJarCreator {

View File

@@ -46,7 +46,7 @@ import static org.junit.Assert.assertThat;
/**
* Tests for {@link ExplodedArchive}.
*
*
* @author Phillip Webb
* @author Dave Syer
*/

View File

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

View File

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

View File

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

View File

@@ -54,7 +54,7 @@ import static org.mockito.Mockito.verify;
/**
* Tests for {@link JarFile}.
*
*
* @author Phillip Webb
* @author Martin Lau
*/