Replace . to _

This commit is contained in:
Lee moon soo 2016-05-14 20:14:35 -07:00
parent b6e4141bad
commit b0680655db

View file

@ -425,7 +425,7 @@ public class Paragraph extends Job implements Serializable, Cloneable {
}
private String getApplicationId(HeliumPackage pkg) {
return "app_" + getNote().getId() + "-" + getId() + pkg.getName();
return "app_" + getNote().getId() + "-" + getId() + pkg.getName().replaceAll("\\.", "_");
}
public ApplicationState createOrGetApplicationState(HeliumPackage pkg) {