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('.', '_');