OpenJDK / jigsaw / jake / jdk
changeset 14172:d885f95c958a
Remove workaround to filter _the.* files from jmod
author | mchung |
---|---|
date | Thu, 01 Oct 2015 15:35:14 -0700 |
parents | 55a274769894 |
children | bfb70743d101 |
files | make/src/classes/build/tools/jigsaw/ModuleSummary.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/make/src/classes/build/tools/jigsaw/ModuleSummary.java Thu Oct 01 17:11:36 2015 +0100 +++ b/make/src/classes/build/tools/jigsaw/ModuleSummary.java Thu Oct 01 15:35:14 2015 -0700 @@ -248,7 +248,7 @@ if (filename.endsWith(".class")) { cCount++; cBytes += len; - } else if (!filename.startsWith("_the")) { // workaround build issue + } else { rCount++; rBytes += len; }