From f27c7df004b07296c3e740f17906ebe73061e7b8 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 21 Sep 2014 21:23:44 +0200 Subject: [PATCH] Avoid Gradle compiler warnings --- .../core/env/SystemEnvironmentPropertySourceTests.java | 5 ++--- .../core/simple/ParameterizedBeanPropertyRowMapperTests.java | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-core/src/test/java/org/springframework/core/env/SystemEnvironmentPropertySourceTests.java b/spring-core/src/test/java/org/springframework/core/env/SystemEnvironmentPropertySourceTests.java index d705458267..9c99c5579a 100644 --- a/spring-core/src/test/java/org/springframework/core/env/SystemEnvironmentPropertySourceTests.java +++ b/spring-core/src/test/java/org/springframework/core/env/SystemEnvironmentPropertySourceTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2011 the original author or authors. + * Copyright 2002-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. @@ -44,8 +44,6 @@ public class SystemEnvironmentPropertySourceTests { @Test public void none() { - //envMap.put("a.key", "a_value"); - assertThat(ps.containsProperty("a.key"), equalTo(false)); assertThat(ps.getProperty("a.key"), equalTo(null)); } @@ -102,6 +100,7 @@ public class SystemEnvironmentPropertySourceTests { } @Test + @SuppressWarnings("serial") public void withSecurityConstraints() throws Exception { envMap = new HashMap() { @Override diff --git a/spring-jdbc/src/test/java/org/springframework/jdbc/core/simple/ParameterizedBeanPropertyRowMapperTests.java b/spring-jdbc/src/test/java/org/springframework/jdbc/core/simple/ParameterizedBeanPropertyRowMapperTests.java index 232c3843e5..6ada31c279 100644 --- a/spring-jdbc/src/test/java/org/springframework/jdbc/core/simple/ParameterizedBeanPropertyRowMapperTests.java +++ b/spring-jdbc/src/test/java/org/springframework/jdbc/core/simple/ParameterizedBeanPropertyRowMapperTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-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. @@ -31,6 +31,7 @@ import org.springframework.jdbc.core.test.Person; /** * @author Thomas Risberg */ +@SuppressWarnings("deprecation") public class ParameterizedBeanPropertyRowMapperTests extends AbstractRowMapperTests { @Rule