Skip to content

Commit

Permalink
Fix lint after non-pull-requested hot-fix to WeakReferences
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Mar 30, 2024
1 parent 3ca9233 commit d4bfe5d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ private[java] object WeakReferenceRegistry {
prev.nextReference = current.nextReference
enqueueCollectedReferences(head, current.nextReference, current)
}
case _ => enqueueCollectedReferences(head, current.nextReference, current)
case _ =>
enqueueCollectedReferences(head, current.nextReference, current)
}
private def handleCollectedReferences(): Unit = {
// This method is designed for calls from C and therefore should not include
Expand Down

0 comments on commit d4bfe5d

Please sign in to comment.