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

@@ -22,7 +22,6 @@ import java.lang.annotation.RetentionPolicy;
import org.aspectj.lang.ProceedingJoinPoint;
import org.junit.Test;
/**
* Additional parameter name discover tests that need Java 5.
* Yes this will re-run the tests from the superclass, but that

View File

@@ -31,7 +31,6 @@ import test.annotation.EmptySpringAnnotation;
import test.annotation.transaction.Tx;
import org.springframework.tests.sample.beans.TestBean;
/**
* Java5-specific {@link AspectJExpressionPointcutTests}.
*

View File

@@ -27,7 +27,6 @@ import org.springframework.aop.framework.AopConfigException;
import test.aop.PerTargetAspect;
import org.springframework.tests.sample.beans.TestBean;
/**
* @author Rod Johnson
* @author Chris Beams

View File

@@ -25,7 +25,6 @@ import org.springframework.aop.aspectj.annotation.AbstractAspectJAdvisorFactoryT
import test.aop.PerTargetAspect;
/**
* @since 2.0
* @author Rod Johnson

View File

@@ -31,7 +31,6 @@ import org.springframework.tests.aop.advice.MethodCounter;
import static org.junit.Assert.*;
import static org.mockito.BDDMockito.*;
/**
* @author Rod Johnson
* @author Chris Beams

View File

@@ -32,7 +32,6 @@ import org.springframework.tests.aop.interceptor.NopInterceptor;
import org.springframework.tests.sample.beans.TestBean;
import org.springframework.util.SerializationTestUtils;
/**
* @author Rod Johnson
* @author Chris Beams

View File

@@ -26,7 +26,6 @@ import org.springframework.tests.aop.interceptor.NopInterceptor;
import org.springframework.tests.sample.beans.ITestBean;
import org.springframework.tests.sample.beans.TestBean;
/**
* @author Rod Johnson
* @author Chris Beams

View File

@@ -30,7 +30,6 @@ import org.springframework.tests.sample.beans.Person;
import org.springframework.tests.sample.beans.SerializablePerson;
import org.springframework.util.SerializationTestUtils;
/**
* @author Rod Johnson
* @author Chris Beams

View File

@@ -31,7 +31,6 @@ import org.springframework.tests.sample.beans.Person;
import org.springframework.tests.sample.beans.TestBean;
import org.springframework.util.SerializationTestUtils;
/**
* @author Rod Johnson
* @author Chris Beams

View File

@@ -36,8 +36,6 @@ import org.springframework.tests.sample.beans.SerializablePerson;
import org.springframework.tests.sample.beans.SideEffectBean;
import org.springframework.util.SerializationTestUtils;
/**
* @author Rod Johnson
* @author Chris Beams

View File

@@ -28,7 +28,6 @@ import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
import org.springframework.core.io.Resource;
import org.springframework.tests.sample.beans.SideEffectBean;
/**
* @author Rod Johnson
* @author Chris Beams

View File

@@ -29,7 +29,6 @@ import org.springframework.core.io.Resource;
import org.springframework.tests.sample.beans.ITestBean;
import org.springframework.tests.sample.beans.SideEffectBean;
/**
* @author Rod Johnson
* @author Chris Beams

View File

@@ -9,7 +9,6 @@ import java.rmi.RemoteException;
import org.springframework.aop.ThrowsAdvice;
@SuppressWarnings("serial")
public class MyThrowsHandler extends MethodCounter implements ThrowsAdvice {
// Full method signature

View File

@@ -20,7 +20,6 @@ import org.springframework.aop.support.DelegatingIntroductionInterceptor;
import org.springframework.aop.support.DefaultIntroductionAdvisor;
import org.springframework.tests.aop.interceptor.TimestampIntroductionInterceptor;
/**
*
* @author Rod Johnson

View File

@@ -18,7 +18,6 @@ package org.springframework.tests.aop.interceptor;
import java.io.Serializable;
/**
* Subclass of NopInterceptor that is serializable and
* can be used to test proxy serialization.