commit | 1f5cb1eda053631f5688616835e0d0670734b0d8 | [log] [tgz] |
---|---|---|
author | gwt.team.jat <gwt.team.jat@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Mar 24 16:17:48 2008 +0000 |
committer | gwt.team.jat <gwt.team.jat@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Mon Mar 24 16:17:48 2008 +0000 |
tree | 53e26fae2d92fa86c0f5a943a8a46f1fdfdf9081 | |
parent | 460966783c68170076879af8d4169d749e89763e [diff] |
Used wrong separator character in building no-deploy filename. Patch by: jat Review by: bobv (TBR) git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2208 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/i18n/rebind/AbstractLocalizableImplCreator.java b/user/src/com/google/gwt/i18n/rebind/AbstractLocalizableImplCreator.java index d78d109..1af5e11 100644 --- a/user/src/com/google/gwt/i18n/rebind/AbstractLocalizableImplCreator.java +++ b/user/src/com/google/gwt/i18n/rebind/AbstractLocalizableImplCreator.java
@@ -134,7 +134,7 @@ Generate generate = targetClass.getAnnotation(Generate.class); if (generate != null) { try { - String path = "no-deploy" + File.pathSeparator + generate.fileName(); + String path = "no-deploy" + File.separatorChar + generate.fileName(); if (Generate.DEFAULT.equals(path)) { path = targetClass.getPackage().getName() + "." + targetClass.getName().replace('.', '_');