From 0eee05adaa22655a33b9cdab2df6b1d81ee578ff Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Tue, 7 Oct 2014 15:31:44 +0200 Subject: [PATCH] DATAMONGO-1062 - Polishing. Removed exploded static imports. Updated copyright header. Original pull request: #229. --- .../config/ServerAddressPropertyEditorUnitTests.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/config/ServerAddressPropertyEditorUnitTests.java b/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/config/ServerAddressPropertyEditorUnitTests.java index b7b7ca713..19565433c 100644 --- a/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/config/ServerAddressPropertyEditorUnitTests.java +++ b/spring-data-mongodb/src/test/java/org/springframework/data/mongodb/config/ServerAddressPropertyEditorUnitTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2013 the original author or authors. + * Copyright 2012-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,12 +15,8 @@ */ package org.springframework.data.mongodb.config; -import static org.hamcrest.Matchers.hasItem; -import static org.hamcrest.Matchers.hasSize; -import static org.hamcrest.Matchers.instanceOf; -import static org.hamcrest.Matchers.is; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertThat; +import static org.hamcrest.Matchers.*; +import static org.junit.Assert.*; import java.net.InetAddress; import java.net.UnknownHostException;