Issue #134 Goto document class

This commit is contained in:
Jindra Petk
2013-06-23 19:06:56 +02:00
parent 140370dc1c
commit 24bfd5f5ee
5 changed files with 46 additions and 8 deletions

View File

@@ -77,7 +77,7 @@ public class ScriptPack {
scriptName = name.getName(abc.constants, new ArrayList<String>());
}
}
return packageName + "." + scriptName;
return packageName.equals("") ? scriptName : packageName + "." + scriptName;
}
private static String makeDirPath(String packageName) {