Skip to content

Commit

Permalink
Fix RI serialization problem, mark some tests broken due to missing E…
Browse files Browse the repository at this point in the history
…xtension stuff, add notes on why RI is broken

git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@3218 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Jul 25, 2009
1 parent 0724571 commit e84b684
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion impl/src/main/java/org/jboss/webbeans/FacadeImpl.java
Expand Up @@ -56,7 +56,9 @@ protected FacadeImpl(Type type, BeanManagerImpl manager, Set<? extends Annotatio
{
this.manager = manager;
this.type = type;
this.bindings = bindings;
// Need to make sure the Set is serializable, some sets from Google Collections aren't
// TODO Work out how to not do this
this.bindings = new HashSet<Annotation>(bindings);
}

/**
Expand Down

0 comments on commit e84b684

Please sign in to comment.