Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Commit

Permalink
fix: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Apr 9, 2022
1 parent 443d4fb commit 3e9b6cd
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -425,11 +425,10 @@ class ClassRepository(systemId: String, language: String, workspace: String) {
val time: String = currentTime
val values: MutableMap<String, String> = HashMap()

val name = field.TypeValue
// for TypeScript
var name = field.TypeValue

if (isJs()) {
if (FIELD_NAME.matches(name)) {
if (!FIELD_NAME.matches(name)) {
continue
}
// if (field.TypeValue.contains("'")) {
Expand Down

0 comments on commit 3e9b6cd

Please sign in to comment.