Skip to content

Commit

Permalink
Merge pull request #21 from FloBoJa/main
Browse files Browse the repository at this point in the history
Avoid dots in PCM names
  • Loading branch information
dr6817 authored Jul 1, 2024
2 parents 5188e52 + 3b45a14 commit bffd59f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static String getExpressionClassName(Expression variable) {
return "STRING";
}

return variable.toString();
return variable.toString().replace(".", "_");
}

/*
Expand Down

0 comments on commit bffd59f

Please sign in to comment.