~peter-kovac11/play/play-scala-console-improvements

« back to all changes in this revision

Viewing changes to framework/src/play/classloading/enhancers/PropertiesEnhancer.java

  • Committer: guillaume
  • Date: 2009-11-11 17:19:54 UTC
  • Revision ID: guillaume@macbook-pro-de-guillaume.local-20091111171954-1z761dqr0aw93747
yabe-with-scala

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
        if (ctClass.isInterface()) {
34
34
            return;
35
35
        }
 
36
        for(CtClass itf : ctClass.getInterfaces()) {
 
37
            if(itf.getName().equals("scala.ScalaObject")) {
 
38
                return;
 
39
            }
 
40
        }
36
41
        for (CtField ctField : ctClass.getDeclaredFields()) {
37
42
            try {
38
43