Created
June 9, 2014 04:25
-
-
Save youknowjack/819444b12a9430adcff7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/proctor-codegen/src/main/java/com/indeed/proctor/consumer/gen/FreeMarkerCodeGenerator.java b/proctor-codegen/src/main/java/com/indeed/proctor/consumer/gen/FreeMarkerCodeGenerator.java | |
index 418fd66..fff7c34 100644 | |
--- a/proctor-codegen/src/main/java/com/indeed/proctor/consumer/gen/FreeMarkerCodeGenerator.java | |
+++ b/proctor-codegen/src/main/java/com/indeed/proctor/consumer/gen/FreeMarkerCodeGenerator.java | |
@@ -69,7 +69,7 @@ public abstract class FreeMarkerCodeGenerator { | |
} | |
public static String packageToPath(final String packageName) { | |
- return packageName.replaceAll("\\.", File.separator); | |
+ return packageName.replaceAll("\\.", "/"); | |
} | |
protected Configuration getFreemarkerConfiguration(final String templatePath) { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment