You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by gs...@apache.org on 2006/12/11 18:09:29 UTC

svn commit: r485756 - /harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/Class_File_Loader.cpp

Author: gshimansky
Date: Mon Dec 11 09:09:28 2006
New Revision: 485756

URL: http://svn.apache.org/viewvc?view=rev&rev=485756
Log:
Applied HARMONY-2611 [drlvm] Couldn't run class junit.framework.TestListener from eclipse 3.1

It should fix regression after HARMONY-2505.

No tests run except for JVMTI because currently VM tests are broken


Modified:
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/Class_File_Loader.cpp

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/Class_File_Loader.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/Class_File_Loader.cpp?view=diff&rev=485756&r1=485755&r2=485756
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/Class_File_Loader.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/class_support/Class_File_Loader.cpp Mon Dec 11 09:09:28 2006
@@ -2694,7 +2694,7 @@
         return false;
     }
     //not only ACC_FINAL flag is prohibited if is_interface, also ACC_SUPER, ACC_SYNTHETIC, ACC_ENUM.
-    if(is_interface() && (is_super() || is_synthetic() || is_enum()))
+    if(is_interface() && (is_synthetic() || is_enum()))
     {
         REPORT_FAILED_CLASS_FORMAT(this,
         "if class is interface, no flags except ACC_ABSTRACT or ACC_PUBLIC can be set");