Fix compiler warnings.

Resolves gh-296.
This commit is contained in:
John Blum
2021-07-23 13:06:10 -07:00
parent 339ff8edca
commit fa78d025fa

View File

@@ -35,8 +35,9 @@ import org.springframework.data.gemfire.tests.integration.IntegrationTestsSuppor
import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringRunner; import org.springframework.test.context.junit4.SpringRunner;
import lombok.Data; import lombok.Getter;
import lombok.NoArgsConstructor; import lombok.NoArgsConstructor;
import lombok.Setter;
/** /**
* Integration Tests for {@link WiringDeclarableSupport} and {@link GemfireBeanFactoryLocator}. * Integration Tests for {@link WiringDeclarableSupport} and {@link GemfireBeanFactoryLocator}.
@@ -75,7 +76,7 @@ public class WiringDeclarableSupportIntegrationTests extends IntegrationTestsSup
} }
@Test @Test
public void declarableObjectAutoWiredSuccessfully() throws Exception { public void declarableObjectAutoWiredSuccessfully() {
assertThat(beanFactory.containsBean("testBean")).isTrue(); assertThat(beanFactory.containsBean("testBean")).isTrue();
assertRegion(example, "Example", DataPolicy.NORMAL); assertRegion(example, "Example", DataPolicy.NORMAL);
@@ -88,15 +89,16 @@ public class WiringDeclarableSupportIntegrationTests extends IntegrationTestsSup
assertThat(((TestCacheLoader) testCacheLoader).getPropertyTwo()).isEqualTo("GoodBye"); assertThat(((TestCacheLoader) testCacheLoader).getPropertyTwo()).isEqualTo("GoodBye");
} }
@Data @Getter
@Setter
@NoArgsConstructor @NoArgsConstructor
public static class TestBean { public static class TestBean {
private String name; private String name;
} }
@Data @Getter
@NoArgsConstructor @NoArgsConstructor
@SuppressWarnings("all") @SuppressWarnings("unused")
public static class TestCacheLoader extends WiringDeclarableSupport implements CacheLoader<String, String> { public static class TestCacheLoader extends WiringDeclarableSupport implements CacheLoader<String, String> {
private Object propertyOne; private Object propertyOne;