Hacker News new | ask | show | jobs
by kafkaIncarnate 1599 days ago
Java has a garbage collector, you shouldn't have memory leaks unless you are just incorrectly allocating memory, which isn't technically a leak which refers to allocated memory with no reference. Without a reference the garbage collector would pick it up.