Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.8.4
6addedf8ee6492954c0f9e152405804206856c43
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
align.preset = "more"
maxColumn = 120
version = "3.1.2"
version = "3.8.4"
runner.dialect = scala213
fileOverride {
"glob:**/src/main/scala-3/**" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ class JavaSerializationAnyRefCodec[S <: Serializable](classTag: ClassTag[S]) ext

def using[T <: Closeable, R](obj: T)(f: T => R): R =
try f(obj)
finally try obj.close()
catch {
case NonFatal(_) => // does nothing
}
finally
try obj.close()
catch {
case NonFatal(_) => // does nothing
}

def encode(value: S): Array[Byte] =
using(new ByteArrayOutputStream()) { buf =>
Expand Down
Loading