same Java class names used in different tests breaking the test fix

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9276 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-09-13 20:56:46 +00:00
commit ee13e546eb

View file

@ -14,7 +14,7 @@ public class director_thread_runme {
}
public static void main(String argv[]) {
Derived d = new Derived();
director_thread_Derived d = new director_thread_Derived();
d.run();
if (d.getVal() >= 0) {
@ -23,8 +23,8 @@ public class director_thread_runme {
}
}
class Derived extends Foo {
Derived() {
class director_thread_Derived extends Foo {
director_thread_Derived() {
super();
}