--
You received this message because you are subscribed to the Google Groups "scala-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-user+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
In Java, Scala, and any JVM language, you can't call finalize to hint that an object should be GC'd! finalize is a callback that the JVM will call when it is looking for finalizable objects. If it has a finalize method then instead of collecting it, it calls finalize and schedules it to be collected then next time around.