commit | 6d71ba14ba0fdbcdee614905298768b014e22c3a | [log] [tgz] |
---|---|---|
author | spoon@google.com <spoon@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Thu Oct 29 20:41:31 2009 +0000 |
committer | spoon@google.com <spoon@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Thu Oct 29 20:41:31 2009 +0000 |
tree | c519e177e97365df0eeaae7323ed1384a4fcd00a | |
parent | 52f72f806b2d86abd6b3dbb0544d8255f361c3e3 [diff] |
Fixes an overly long filename in a compile report. Review by: kprobst git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@6546 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java b/dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java index 122959e..0f9354a 100644 --- a/dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java +++ b/dev/core/src/com/google/gwt/soyc/MakeTopLevelHtmlForPerm.java
@@ -172,8 +172,8 @@ private static String classesInPackageFileName(SizeBreakdown breakdown, String packageName, String permutationId) { - return breakdown.getId() + "_" + packageName + "-" + permutationId - + "_Classes.html"; + return breakdown.getId() + "_" + filename(packageName) + "-" + + permutationId + "_Classes.html"; } /**