Skip to content

Commit 70b8108

Browse files
committed
Format another warning suppression in the same manner, as above.
1 parent ed9eab6 commit 70b8108

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

datastore/src/main/java/io/spine/server/storage/datastore/DsColumnMapping.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ protected static ColumnTypeMapping<Timestamp, TimestampValue> ofTimestamp() {
182182
/**
183183
* Returns the default mapping from {@link Version} to {@link LongValue}.
184184
*/
185-
@SuppressWarnings({"UnnecessaryLambda" /* For brevity.*/,
185+
@SuppressWarnings({
186+
"UnnecessaryLambda" /* For brevity.*/,
186187
"WeakerAccess" /* To allow access for SPI users. */})
187188
protected static ColumnTypeMapping<Version, LongValue> ofVersion() {
188189
return version -> LongValue.of(version.getNumber());

0 commit comments

Comments
 (0)