Skip to content

Commit

Permalink
✨ fix(SQL2GormStruct): Correct typo in method name `containsNotNullCo…
Browse files Browse the repository at this point in the history
…nstaint` to `containsNotNullConstraint`

🔧 chore(build.gradle.kts): Remove unused import `markdownToHTML`
  • Loading branch information
johnmai-dev committed Jan 27, 2025
1 parent 50772b3 commit 10e2596
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import org.jetbrains.changelog.Changelog
import org.jetbrains.changelog.markdownToHTML
import org.jetbrains.intellij.platform.gradle.TestFrameworkType

plugins {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ protected void generateORMTag(@NotNull StringBuilder stringBuilder, @NotNull SQL
stringBuilder.append("primaryKey;");
}

if (definition.containsNotNullConstaint()) {
if (definition.containsNotNullConstraint()) {
stringBuilder.append("not null;");
}

Expand Down

0 comments on commit 10e2596

Please sign in to comment.