Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
refactor: public static member
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Apr 24, 2024
1 parent 243223f commit cfad6d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/com/liteldev/headeroutput/entity/ClassType.kt
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ open class ClassType(
if (protectedVariables.isEmpty()) {
return ""
}
appendLine("protected:")
appendLine(" // protected:")
appendLine(" // NOLINTBEGIN")
protectedVariables.let(::generateMembers).let(::append)
appendLine(" // NOLINTEND")
Expand All @@ -246,7 +246,7 @@ open class ClassType(
if (privateVariables.isEmpty()) {
return ""
}
appendLine("private:")
appendLine(" // private:")
appendLine(" // NOLINTBEGIN")
privateVariables.let(::generateMembers).let(::append)
appendLine(" // NOLINTEND")
Expand Down

0 comments on commit cfad6d8

Please sign in to comment.