Remove trailing whitespace from source code

This commit is contained in:
Sam Brannen 2014-02-08 17:30:39 +01:00
parent 1f778530b5
commit c335e99e3f
20 changed files with 29 additions and 29 deletions

View File

@ -26,7 +26,7 @@ import static org.springframework.mock.staticmock.AnnotationDrivenStaticEntityMo
/** /**
* Tests for Spring's static entity mocking framework (i.e., @{@link MockStaticEntityMethods} * Tests for Spring's static entity mocking framework (i.e., @{@link MockStaticEntityMethods}
* and {@link AnnotationDrivenStaticEntityMockingControl}). * and {@link AnnotationDrivenStaticEntityMockingControl}).
* *
* @author Rod Johnson * @author Rod Johnson
* @author Ramnivas Laddad * @author Ramnivas Laddad
* @author Sam Brannen * @author Sam Brannen

View File

@ -24,7 +24,7 @@ import org.springframework.util.Assert;
/** /**
* Class describing the root object used during the expression evaluation. * Class describing the root object used during the expression evaluation.
* *
* @author Costin Leau * @author Costin Leau
* @author Sam Brannen * @author Sam Brannen
* @since 3.1 * @since 3.1

View File

@ -52,19 +52,19 @@ public class Spr11202Tests {
context = new AnnotationConfigApplicationContext(Wrapper.class); context = new AnnotationConfigApplicationContext(Wrapper.class);
assertEquals("foo", context.getBean("value")); assertEquals("foo", context.getBean("value"));
} }
@Test // Passes @Test // Passes
public void testWithoutImporter() { public void testWithoutImporter() {
context = new AnnotationConfigApplicationContext(Config.class); context = new AnnotationConfigApplicationContext(Config.class);
assertEquals("foo", context.getBean("value")); assertEquals("foo", context.getBean("value"));
} }
@Configuration @Configuration
@Import(Selector.class) @Import(Selector.class)
protected static class Wrapper { protected static class Wrapper {
} }
protected static class Selector implements ImportSelector { protected static class Selector implements ImportSelector {
@Override @Override

View File

@ -183,11 +183,11 @@ public class ImportResourceTests {
reader=XmlBeanDefinitionReader.class) reader=XmlBeanDefinitionReader.class)
static class SubResourceConfig extends ImportNonXmlResourceConfig { static class SubResourceConfig extends ImportNonXmlResourceConfig {
} }
@Test @Test
public void importWithPlaceHolder() throws Exception { public void importWithPlaceHolder() throws Exception {
AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(); AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext();
PropertySource<?> propertySource = new MapPropertySource("test", PropertySource<?> propertySource = new MapPropertySource("test",
Collections.<String, Object> singletonMap("test", "springframework")); Collections.<String, Object> singletonMap("test", "springframework"));
ctx.getEnvironment().getPropertySources().addFirst(propertySource); ctx.getEnvironment().getPropertySources().addFirst(propertySource);
ctx.register(ImportXmlConfig.class); ctx.register(ImportXmlConfig.class);
@ -199,6 +199,6 @@ public class ImportResourceTests {
@ImportResource("classpath:org/${test}/context/annotation/configuration/ImportXmlConfig-context.xml") @ImportResource("classpath:org/${test}/context/annotation/configuration/ImportXmlConfig-context.xml")
static class ImportWithPlaceHolder { static class ImportWithPlaceHolder {
} }
} }

View File

@ -18,7 +18,7 @@ package org.springframework.core.annotation.subpackage;
/** /**
* Class annotated with a non-public (i.e., package private) custom annotation. * Class annotated with a non-public (i.e., package private) custom annotation.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 4.0 * @since 4.0
*/ */

View File

@ -21,7 +21,7 @@ import java.lang.annotation.RetentionPolicy;
/** /**
* Non-public (i.e., package private) custom annotation. * Non-public (i.e., package private) custom annotation.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 4.0 * @since 4.0
*/ */

View File

@ -34,7 +34,7 @@ import static org.junit.Assert.*;
* Unit tests for checking the behaviour of {@link CachingMetadataReaderFactory} under * Unit tests for checking the behaviour of {@link CachingMetadataReaderFactory} under
* load. If the cache is not controlled, this test should fail with an out of memory * load. If the cache is not controlled, this test should fail with an out of memory
* exception around entry 5k. * exception around entry 5k.
* *
* @author Costin Leau * @author Costin Leau
* @author Sam Brannen * @author Sam Brannen
*/ */

View File

@ -24,7 +24,7 @@ import org.springframework.core.convert.TypeDescriptor;
* A constructor resolver attempts locate a constructor and returns a ConstructorExecutor * A constructor resolver attempts locate a constructor and returns a ConstructorExecutor
* that can be used to invoke that constructor. The ConstructorExecutor will be cached but * that can be used to invoke that constructor. The ConstructorExecutor will be cached but
* if it 'goes stale' the resolvers will be called again. * if it 'goes stale' the resolvers will be called again.
* *
* @author Andy Clement * @author Andy Clement
* @since 3.0 * @since 3.0
*/ */

View File

@ -28,7 +28,7 @@ import org.springframework.expression.ParserContext;
/** /**
* An expression parser that understands templates. It can be subclassed by expression * An expression parser that understands templates. It can be subclassed by expression
* parsers that do not offer first class support for templating. * parsers that do not offer first class support for templating.
* *
* @author Keith Donald * @author Keith Donald
* @author Juergen Hoeller * @author Juergen Hoeller
* @author Andy Clement * @author Andy Clement

View File

@ -21,7 +21,7 @@ import org.springframework.expression.ParseException;
* Root exception for Spring EL related exceptions. Rather than holding a hard coded * Root exception for Spring EL related exceptions. Rather than holding a hard coded
* string indicating the problem, it records a message key and the inserts for the * string indicating the problem, it records a message key and the inserts for the
* message. See {@link SpelMessage} for the list of all possible messages that can occur. * message. See {@link SpelMessage} for the list of all possible messages that can occur.
* *
* @author Andy Clement * @author Andy Clement
* @since 3.0 * @since 3.0
*/ */

View File

@ -30,7 +30,7 @@ import static org.mockito.BDDMockito.*;
/** /**
* Tests for {@link DelegatingDataSource}. * Tests for {@link DelegatingDataSource}.
* *
* @author Phillip Webb * @author Phillip Webb
*/ */
public class DelegatingDataSourceTests { public class DelegatingDataSourceTests {

View File

@ -26,7 +26,7 @@ import java.lang.annotation.Target;
/** /**
* Annotation for handling exceptions thrown from message-handling methods within a * Annotation for handling exceptions thrown from message-handling methods within a
* specific handler class. * specific handler class.
* *
* @author Rossen Stoyanchev * @author Rossen Stoyanchev
* @since 4.0 * @since 4.0
*/ */

View File

@ -26,7 +26,7 @@ import static org.mockito.Mockito.*;
/** /**
* Unit tests for {@link SharedEntityManagerCreator}. * Unit tests for {@link SharedEntityManagerCreator}.
* *
* @author Oliver Gierke * @author Oliver Gierke
*/ */
public class SharedEntityManagerCreatorTests { public class SharedEntityManagerCreatorTests {

View File

@ -68,7 +68,7 @@ import java.lang.annotation.Target;
* The result is that three application contexts will be loaded (one for each * The result is that three application contexts will be loaded (one for each
* declaration of {@code @ContextConfiguration}, and the application context * declaration of {@code @ContextConfiguration}, and the application context
* loaded based on the configuration in {@code AbstractWebTests} will be set as * loaded based on the configuration in {@code AbstractWebTests} will be set as
* the parent context for each of the contexts loaded for the concrete subclasses. * the parent context for each of the contexts loaded for the concrete subclasses.
* *
* <pre class="code"> * <pre class="code">
* &#064;RunWith(SpringJUnit4ClassRunner.class) * &#064;RunWith(SpringJUnit4ClassRunner.class)
@ -104,7 +104,7 @@ import java.lang.annotation.Target;
* &#064;ContextConfiguration(name = "child", locations = "/user-config.xml") * &#064;ContextConfiguration(name = "child", locations = "/user-config.xml")
* }) * })
* public class BaseTests {} * public class BaseTests {}
* *
* &#064;ContextHierarchy( * &#064;ContextHierarchy(
* &#064;ContextConfiguration(name = "child", locations = "/order-config.xml") * &#064;ContextConfiguration(name = "child", locations = "/order-config.xml")
* ) * )
@ -116,7 +116,7 @@ import java.lang.annotation.Target;
* by setting the {@link ContextConfiguration#inheritLocations} flag to {@code false}. * by setting the {@link ContextConfiguration#inheritLocations} flag to {@code false}.
* Consequently, the application context for {@code ExtendedTests} will be loaded * Consequently, the application context for {@code ExtendedTests} will be loaded
* only from {@code "/test-user-config.xml"} and will have its parent set to the * only from {@code "/test-user-config.xml"} and will have its parent set to the
* context loaded from {@code "/app-config.xml"}. * context loaded from {@code "/app-config.xml"}.
* *
* <pre class="code"> * <pre class="code">
* &#064;RunWith(SpringJUnit4ClassRunner.class) * &#064;RunWith(SpringJUnit4ClassRunner.class)
@ -125,7 +125,7 @@ import java.lang.annotation.Target;
* &#064;ContextConfiguration(name = "child", locations = "/user-config.xml") * &#064;ContextConfiguration(name = "child", locations = "/user-config.xml")
* }) * })
* public class BaseTests {} * public class BaseTests {}
* *
* &#064;ContextHierarchy( * &#064;ContextHierarchy(
* &#064;ContextConfiguration(name = "child", locations = "/test-user-config.xml", inheritLocations=false) * &#064;ContextConfiguration(name = "child", locations = "/test-user-config.xml", inheritLocations=false)
* ) * )

View File

@ -122,7 +122,7 @@ abstract class MetaAnnotationUtils {
* the specified {@code clazz} itself) which declares at least one of the * the specified {@code clazz} itself) which declares at least one of the
* specified {@code annotationTypes}, or {@code null} if none of the * specified {@code annotationTypes}, or {@code null} if none of the
* specified annotation types could be found. * specified annotation types could be found.
* *
* <p>This method traverses the annotations and superclasses of the specified * <p>This method traverses the annotations and superclasses of the specified
* {@code clazz} if no annotation can be found on the given class itself. * {@code clazz} if no annotation can be found on the given class itself.
* *

View File

@ -39,7 +39,7 @@ import static org.junit.Assert.*;
* *
* <p>Note that correct method execution order is essential, thus the use of * <p>Note that correct method execution order is essential, thus the use of
* {@link FixMethodOrder}. * {@link FixMethodOrder}.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2.2 * @since 3.2.2
*/ */

View File

@ -33,7 +33,7 @@ import static org.junit.Assert.*;
* Integration test that verifies support for {@link ApplicationContextInitializer * Integration test that verifies support for {@link ApplicationContextInitializer
* ApplicationContextInitializers} in the TestContext framework when the test class * ApplicationContextInitializers} in the TestContext framework when the test class
* declares neither XML configuration files nor annotated configuration classes. * declares neither XML configuration files nor annotated configuration classes.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 3.2 * @since 3.2
*/ */

View File

@ -22,7 +22,7 @@ import org.springframework.web.context.ServletContextAware;
/** /**
* Introduced to investigate claims in SPR-11145. * Introduced to investigate claims in SPR-11145.
* *
* @author Sam Brannen * @author Sam Brannen
* @since 4.0.2 * @since 4.0.2
*/ */

View File

@ -24,10 +24,10 @@ import static org.junit.Assert.*;
/** /**
* Introduced to investigate claims in SPR-11145. * Introduced to investigate claims in SPR-11145.
* *
* <p> * <p>
* Yes, this test class does in fact use JUnit to run JUnit. ;) * Yes, this test class does in fact use JUnit to run JUnit. ;)
* *
* @author Sam Brannen * @author Sam Brannen
* @since 4.0.2 * @since 4.0.2
*/ */

View File

@ -235,7 +235,7 @@ public class MockHttpSession implements HttpSession {
/** /**
* Convenience method for asserting that this session has not been * Convenience method for asserting that this session has not been
* {@linkplain #invalidate() invalidated}. * {@linkplain #invalidate() invalidated}.
* *
* @throws IllegalStateException if this session has been invalidated * @throws IllegalStateException if this session has been invalidated
*/ */
private void assertIsValid() { private void assertIsValid() {