Skip to content

Instantly share code, notes, and snippets.

@FlatMapIO
Created February 26, 2015 09:29
Show Gist options
  • Save FlatMapIO/2b5943b6ca38f9ea3c8f to your computer and use it in GitHub Desktop.
Save FlatMapIO/2b5943b6ca38f9ea3c8f to your computer and use it in GitHub Desktop.
Get Unsafe util
def unsafe: Unsafe = {
val field = classOf[Unsafe].getDeclaredField("theUnsafe")
field.setAccessible(true)
field.get(null)
val unsafe = field.asInstanceOf[Unsafe]
unsafe
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment