summaryrefslogtreecommitdiffstats
path: root/weaver
diff options
context:
space:
mode:
authoraclement <aclement>2008-08-19 18:06:43 +0000
committeraclement <aclement>2008-08-19 18:06:43 +0000
commit3246e40b89660d7de65394b132ed385043fa1878 (patch)
treee16cb3f19a16a8da33aba046bd5a9235391543bf /weaver
parent00f8db2caec8ab08ea2b25e87da3bd76ef6502c7 (diff)
downloadaspectj-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.java2
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++) {