core: use aliased name for save class to file
This commit is contained in:
@@ -107,9 +107,10 @@ public final class ClassInfo {
|
||||
}
|
||||
|
||||
public String getFullPath() {
|
||||
return pkg.replace('.', File.separatorChar)
|
||||
ClassInfo alias = getAlias();
|
||||
return alias.getPackage().replace('.', File.separatorChar)
|
||||
+ File.separatorChar
|
||||
+ getNameWithoutPackage().replace('.', '_');
|
||||
+ alias.getNameWithoutPackage().replace('.', '_');
|
||||
}
|
||||
|
||||
public String getFullName() {
|
||||
|
||||
Reference in New Issue
Block a user