Consistent whitespace after imports

Update code to have a consistent number of new-line characters after
import statements.
This commit is contained in:
Phillip Webb
2013-11-26 14:55:51 -08:00
parent 15698860e1
commit 043a41e382
150 changed files with 0 additions and 153 deletions

View File

@@ -27,7 +27,6 @@ import java.util.Locale;
import java.util.Map;
import java.util.TreeSet;
/**
* Represents a MIME Type, as originally defined in RFC 2046 and subsequently used in
* other Internet protocols including HTTP. This class however does not contain support

View File

@@ -27,7 +27,6 @@ import java.io.OutputStreamWriter;
import java.io.Writer;
import java.nio.charset.Charset;
/**
* Simple utility methods for dealing with streams. The copy methods of this class are
* similar to those defined in {@link FileCopyUtils} except that all affected streams are

View File

@@ -35,7 +35,6 @@ import org.junit.Test;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
/**
* Tests for {@link SerializableTypeWrapper}.
*

View File

@@ -24,7 +24,6 @@ import java.lang.reflect.Method;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
/**
* Tests for StandardReflectionParameterNameDiscoverer
*

View File

@@ -28,7 +28,6 @@ import java.util.Map;
import org.junit.Test;
import org.springframework.mock.env.MockPropertySource;
import static java.lang.String.*;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;

View File

@@ -20,7 +20,6 @@ import java.util.List;
import org.springframework.core.io.Resource;
public class GenericObject<T> {
private List<Resource> resourceList;

View File

@@ -28,7 +28,6 @@ import org.springframework.core.convert.support.DefaultConversionService;
import static org.junit.Assert.*;
/**
* @author Arjen Poutsma
* @author Juergen Hoeller