Skip to content

Commit

Permalink
Suppress some build warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg-Melnik committed Sep 17, 2024
1 parent da55f3d commit ef14211
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ package io.spine.internal.dependency
*/
@Suppress(
"unused" /* Some subprojects do not use ProtoData directly. */,
"MemberVisibilityCanBePrivate" /* The properties are used directly by other subprojects. */
"MemberVisibilityCanBePrivate" /* The properties are used directly by other subprojects. */,
"ConstPropertyName" /* Suppress warnings on lover-case property names. */
)
object ProtoData {
const val group = "io.spine.protodata"
Expand Down

0 comments on commit ef14211

Please sign in to comment.