summaryrefslogtreecommitdiffstats
path: root/src/test/misc/SuperTest.java
diff options
context:
space:
mode:
authorRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-05-19 15:04:06 +0400
committerRoman Shevchenko <roman.shevchenko@jetbrains.com>2014-05-19 15:04:06 +0400
commit78ef309b3ee19cf0decddf2541d80f4dca8eb299 (patch)
tree66e6359d5019064c2d1bfce883cfca35fc24462b /src/test/misc/SuperTest.java
parent4d48812ad04a70a26c27b6524d43c474d67bedd5 (diff)
downloadfernflower-78ef309b3ee19cf0decddf2541d80f4dca8eb299.tar
fernflower-78ef309b3ee19cf0decddf2541d80f4dca8eb299.tar.gz
fernflower-78ef309b3ee19cf0decddf2541d80f4dca8eb299.tar.lz
fernflower-78ef309b3ee19cf0decddf2541d80f4dca8eb299.tar.xz
fernflower-78ef309b3ee19cf0decddf2541d80f4dca8eb299.zip
project cleanup
- test classes (src/test/*) moved to separate root - stray .class files dropped - binary files (bin/, dist/full/, dist/obfuscated/) excluded from the repo - .classpath and .gitignore updated accordingly - invalid import statements removed
Diffstat (limited to 'src/test/misc/SuperTest.java')
-rw-r--r--src/test/misc/SuperTest.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/test/misc/SuperTest.java b/src/test/misc/SuperTest.java
deleted file mode 100644
index 01fc990..0000000
--- a/src/test/misc/SuperTest.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package test.misc;
-
-import java.util.ArrayList;
-
-public class SuperTest extends ArrayList {
-
- public SuperTest() {
- super(3);
- super.modCount = 2;
- SuperTest.super.size();
- }
-
- public int size() {
- System.out.println("1");
- return 0;
- }
-
- class SuperTest1 {
-
- public void test() {
- SuperTest.super.size();
- SuperTest.super.modCount = 2;
- }
-
- }
-
-}