-
Task
-
Resolution: Done
-
Minor
-
None
-
None
-
None
-
2021 Week 07-09 (from Feb 15)
-
5
-
NEW
-
NEW
Step to reproduce:
- create a PackageDescrBuilder builder
- declare types with
builder.newDeclare().type()...
- create a PackageDescr descr with
builder.getDescr()
- invoke
descr.writeExternal(ObjectOutput)
The following exception is thrown
java.io.NotSerializableException: org.drools.compiler.lang.descr.QualifiedName
because inside PackageDescr there is a
TypeDeclarationDescr
(that is serializable) that in turn contains
QualifiedName
(that is not)