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

@@ -34,7 +34,7 @@ import static org.junit.Assert.assertEquals;
/**
* Basic integration tests for service demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -28,7 +28,7 @@ import static org.junit.Assert.assertNotNull;
/**
* Basic integration tests for service demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -36,7 +36,7 @@ import static org.junit.Assert.assertEquals;
/**
* Integration tests for separate management and main service ports.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -40,7 +40,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -36,7 +36,7 @@ import static org.junit.Assert.assertTrue;
/**
* Integration tests for endpoints configuration.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -37,7 +37,7 @@ import static org.junit.Assert.assertTrue;
/**
* Integration tests for separate management and main service ports.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -36,7 +36,7 @@ import static org.junit.Assert.assertTrue;
/**
* Integration tests for endpoints configuration.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -37,7 +37,7 @@ import static org.junit.Assert.assertTrue;
/**
* Integration tests for separate management and main service ports.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -36,7 +36,7 @@ import static org.junit.Assert.assertEquals;
/**
* Integration tests for switching off management endpoints.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -45,7 +45,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for service demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -36,7 +36,7 @@ import static org.junit.Assert.assertTrue;
/**
* Integration tests for endpoints configuration.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -36,7 +36,7 @@ import static org.junit.Assert.assertFalse;
/**
* Integration tests for unsecured service endpoints (even with Spring Security on
* classpath).
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -37,7 +37,7 @@ import static org.junit.Assert.assertTrue;
/**
* Integration tests for separate management and main service ports.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -38,7 +38,7 @@ import static org.junit.Assert.assertTrue;
/**
* Integration tests for unsecured service endpoints (even with Spring Security on
* classpath).
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -36,7 +36,7 @@ import static org.junit.Assert.assertFalse;
/**
* Integration tests for unsecured service endpoints (even with Spring Security on
* classpath).
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

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

View File

@@ -27,7 +27,7 @@ import static org.junit.Assert.assertTrue;
/**
* Tests for {@link SampleElasticsearchApplication}.
*
*
* @author Artur Konczak
*/
public class SampleElasticsearchApplicationTests {

View File

@@ -28,7 +28,7 @@ import org.springframework.transaction.annotation.EnableTransactionManagement;
* The GemstoneAppConfiguration class for allowing Spring Boot to pickup additional
* application Spring configuration meta-data for GemFire, which must be specified in
* Spring Data GemFire's XML namespace.
*
*
* @author John Blum
*/
@Configuration

View File

@@ -25,7 +25,7 @@ import org.springframework.util.ObjectUtils;
/**
* The Gemstone class is an abstract data type modeling a Gemstone, such as a diamond or a
* ruby.
*
*
* @author John Blum
*/
@Region("Gemstones")

View File

@@ -24,7 +24,7 @@ import sample.data.gemfire.domain.Gemstone;
* The GemstoneRepository interface is an extension of the GemfireRepository abstraction
* for encapsulating data access and persistence operations (CRUD) on Gemstone domain
* objects.
*
*
* @author John Blum
*/
public interface GemstoneRepository extends GemfireRepository<Gemstone, Long> {

View File

@@ -21,7 +21,7 @@ import sample.data.gemfire.domain.Gemstone;
/**
* The GemstoneService interface is a Service interface object contract defining business
* operations for processing Gemstone domain objects.
*
*
* @author John Blum
*/
public interface GemstoneService {

View File

@@ -33,7 +33,7 @@ import sample.data.gemfire.domain.Gemstone;
* The GemstoneServiceImpl class is a Service object implementing the GemstoneService
* interface containing business logic and rules in addition to data services for
* processing Gemstones.
*
*
* @author John Blum
*/
@Service("gemstoneService")
@@ -56,7 +56,7 @@ public class GemstoneServiceImpl implements GemstoneService {
/**
* Returns a count of the number of Gemstones in the GemFire Cache.
* <p/>
*
*
* @return a long value indicating the number of Gemstones in the GemFire Cache.
*/
@Override
@@ -68,7 +68,7 @@ public class GemstoneServiceImpl implements GemstoneService {
/**
* Gets a Gemstone by ID.
* <p/>
*
*
* @param id a long value indicating the identifier of the Gemstone.
* @return a Gemstone with ID, or null if no Gemstone exists with ID.
* @see sample.data.gemfire.domain.Gemstone
@@ -82,7 +82,7 @@ public class GemstoneServiceImpl implements GemstoneService {
/**
* Gets a Gemstone by name.
* <p/>
*
*
* @param name a String value indicating the name of the Gemstone.
* @return a Gemstone with name, or null if no Gemstone exists with name.
* @see sample.data.gemfire.domain.Gemstone
@@ -96,7 +96,7 @@ public class GemstoneServiceImpl implements GemstoneService {
/**
* Return a listing of Gemstones currently stored in the GemFire Cache.
* <p/>
*
*
* @return a Iterable object to iterate over the list of Gemstones currently stored in
* the GemFire Cache.
* @see java.lang.Iterable
@@ -111,7 +111,7 @@ public class GemstoneServiceImpl implements GemstoneService {
/**
* Saves the specified Gemstone to the GemFire Cache.
* <p/>
*
*
* @param gemstone the Gemstone to save in the GemFire Cache.
* @return the saved Gemstone.
* @see sample.data.gemfire.domain.Gemstone

View File

@@ -38,7 +38,7 @@ import static org.junit.Assert.assertTrue;
/**
* The SampleDataGemFireApplicationTest class is a test suite with test cases testing the
* SampleDataGemFireApplication in Spring Boot.
*
*
* @author John Blum
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -18,7 +18,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
/**
* Integration test to run the application.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -32,7 +32,7 @@ import static org.junit.Assert.assertThat;
/**
* Integration tests for {@link CityRepository}.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -40,7 +40,7 @@ import static org.junit.Assert.assertThat;
/**
* Integration tests for {@link HotelRepository}.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

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

View File

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

View File

@@ -35,7 +35,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
/**
* Integration test to run the application.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -33,7 +33,7 @@ import static org.junit.Assert.assertThat;
/**
* Integration tests for {@link CityRepository}.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -38,7 +38,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for service demo application.
*
*
* @author Dave Syer
*/
public class SampleIntegrationApplicationTests {

View File

@@ -32,7 +32,7 @@ import static org.junit.Assert.assertEquals;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -32,11 +32,11 @@ public class SampleParentContextApplication {
public static void main(String[] args) throws Exception {
new SpringApplicationBuilder(Parent.class).child(SampleParentContextApplication.class).run(args);
}
@EnableAutoConfiguration
@ImportResource("integration-context.xml")
protected static class Parent {
}
}

View File

@@ -37,7 +37,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for service demo application.
*
*
* @author Dave Syer
*/
public class SampleIntegrationApplicationTests {

View File

@@ -22,7 +22,7 @@ import org.springframework.stereotype.Service;
/**
* @author Dave Syer
*
*
*/
@Service
public class SampleService {

View File

@@ -40,7 +40,7 @@ import static org.junit.Assert.assertEquals;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -34,7 +34,7 @@ import static org.junit.Assert.assertEquals;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

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

View File

@@ -28,7 +28,7 @@ import static org.junit.Assert.assertTrue;
/**
* Tests for {@link SampleSimpleApplication}.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -35,7 +35,7 @@ import org.springframework.util.SocketUtils;
/**
* Sample Application to show Tomcat running 2 connectors
*
*
* @author Brock Mills
*/
@Configuration

View File

@@ -46,7 +46,7 @@ import static org.junit.Assert.assertEquals;
/**
* Basic integration tests for 2 connector demo application.
*
*
* @author Brock Mills
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -46,7 +46,7 @@ import static org.junit.Assert.assertEquals;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -32,7 +32,7 @@ import static org.junit.Assert.assertEquals;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -33,7 +33,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for JSP application.
*
*
* @author Phillip Webb
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -33,7 +33,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -39,7 +39,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for FreeMarker application.
*
*
* @author Phillip Webb
* @author Andy Wilkinson
*/

View File

@@ -41,7 +41,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
/**
* A Basic Spring MVC Test for the Sample Controller"
*
*
* @author Biju Kunjummen
* @author Doo-Hwan, Kwak
*/

View File

@@ -38,7 +38,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -33,7 +33,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for JSP application.
*
*
* @author Phillip Webb
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -43,7 +43,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -44,7 +44,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -34,7 +34,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -40,7 +40,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
/**
* A Basic Spring MVC Test for the Sample Controller"
*
*
* @author Biju Kunjummen
* @author Doo-Hwan, Kwak
*/

View File

@@ -38,7 +38,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for demo application.
*
*
* @author Dave Syer
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -39,7 +39,7 @@ import static org.junit.Assert.assertTrue;
/**
* Basic integration tests for Velocity application.
*
*
* @author Phillip Webb
* @author Andy Wilkinson
*/