8041521: JDK-8034245 breaks a bootcycle build

Reviewed-by: jjg
This commit is contained in:
Paul Govereau 2014-04-22 15:59:33 -07:00
parent 9783b65028
commit 0a5665b53a

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -316,7 +316,8 @@ public class GenStubs {
}
defs.add(def);
}
return m.TopLevel(tree.packageAnnotations, tree.pid, defs.toList());
tree.defs = tree.defs.intersect(defs.toList());
return tree;
}
@Override