Suppress warnings in tests

This commit suppresses warnings in test classes that were polluting the
Gradle build output.
This commit is contained in:
Sam Brannen
2014-12-31 02:10:30 +01:00
parent 27b4909f46
commit 40449e2741
5 changed files with 9 additions and 5 deletions

View File

@@ -16,8 +16,6 @@
package org.springframework.context.annotation.ltw;
import org.springframework.test.jpa.AbstractJpaTests;
/**
* Test to ensure that component scanning work with load-time weaver.
* See SPR-3873 for more details.
@@ -25,7 +23,7 @@ import org.springframework.test.jpa.AbstractJpaTests;
* @author Ramnivas Laddad
*/
@SuppressWarnings("deprecation")
public class ComponentScanningWithLTWTests extends AbstractJpaTests {
public class ComponentScanningWithLTWTests extends org.springframework.test.jpa.AbstractJpaTests {
public ComponentScanningWithLTWTests() {
setDependencyCheck(false);