aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Brisson <claude@renegat.net>2021-02-25 22:11:39 +0100
committerClaude Brisson <claude@renegat.net>2021-02-25 22:11:39 +0100
commit98895094e7f52c4fba9956c3508f934ae2274e97 (patch)
treef331a079019e4a2f028ae03c9197c572fcea1bb1
parentf355cec739d4e705e541a149ff2d8806ed565401 (diff)
downloadapache-velocity-engine-98895094e7f52c4fba9956c3508f934ae2274e97.tar.gz
Remove unused test methods
-rw-r--r--velocity-engine-core/src/test/java/org/apache/velocity/test/SecureIntrospectionTestCase.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/velocity-engine-core/src/test/java/org/apache/velocity/test/SecureIntrospectionTestCase.java b/velocity-engine-core/src/test/java/org/apache/velocity/test/SecureIntrospectionTestCase.java
index 081e48b2..f504029f 100644
--- a/velocity-engine-core/src/test/java/org/apache/velocity/test/SecureIntrospectionTestCase.java
+++ b/velocity-engine-core/src/test/java/org/apache/velocity/test/SecureIntrospectionTestCase.java
@@ -174,28 +174,6 @@ public class SecureIntrospectionTestCase extends BaseTestCase
c.add("ccc");
return c;
}
-
- public ClassLoader getSampleClassLoader1()
- {
- return this.getClass().getClassLoader();
- }
-
- /**
- * sample property which is a subclass of ClassLoader
- * @return
- */
- public ClassLoader getSampleClassLoader2()
- {
- try
- {
- return new URLClassLoader(new URL[]{new URL("file://.")}, this.getClass().getClassLoader());
- }
- catch (MalformedURLException e)
- {
- throw new RuntimeException(e);
- }
- }
-
}