- 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
16 lines
321 B
Java
16 lines
321 B
Java
package test.output;
|
|
|
|
import java.lang.reflect.Method;
|
|
|
|
public class TestEclipse7 {
|
|
|
|
public void testMultiCatch() {
|
|
try {
|
|
Method e = this.getClass().getDeclaredMethod("foo", new Class[0]);
|
|
} catch (SecurityException | NoSuchMethodException var2) {
|
|
var2.printStackTrace();
|
|
}
|
|
|
|
}
|
|
}
|