1 Reply Latest reply on Aug 7, 2005 5:59 PM by kukeltje

    Found Bug in FieldInstantiator / where report?

    camunda

      Line 117 it is

       if (keyType!=null) {
       valueClass = ClassLoaderUtil.loadClass(valueType);
       }
      

      but it should be
       if (valueType!=null) {
       valueClass = ClassLoaderUtil.loadClass(valueType);
       }


      Where can I report Bugs in jBPM?