diff options
author | aclement <aclement> | 2008-08-19 18:06:43 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-08-19 18:06:43 +0000 |
commit | 3246e40b89660d7de65394b132ed385043fa1878 (patch) | |
tree | e16cb3f19a16a8da33aba046bd5a9235391543bf /weaver | |
parent | 00f8db2caec8ab08ea2b25e87da3bd76ef6502c7 (diff) | |
download | aspectj-3246e40b89660d7de65394b132ed385043fa1878.tar.gz aspectj-3246e40b89660d7de65394b132ed385043fa1878.zip |
242797: npe in TypeVariable after deserialization since interfacebounds not correctly initialized
Diffstat (limited to 'weaver')
-rw-r--r-- | weaver/src/org/aspectj/weaver/TypeVariable.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weaver/src/org/aspectj/weaver/TypeVariable.java b/weaver/src/org/aspectj/weaver/TypeVariable.java index f9e86f49b..85a4a3303 100644 --- a/weaver/src/org/aspectj/weaver/TypeVariable.java +++ b/weaver/src/org/aspectj/weaver/TypeVariable.java @@ -380,7 +380,7 @@ public class TypeVariable { String name = s.readUTF(); UnresolvedType ubound = UnresolvedType.read(s); int iboundcount = s.readInt(); - UnresolvedType[] ibounds = null; + UnresolvedType[] ibounds = UnresolvedType.NONE; if (iboundcount>0) { ibounds = new UnresolvedType[iboundcount]; for (int i=0; i<iboundcount; i++) { |