diff options
Diffstat (limited to 'public/java-segfault.md')
-rw-r--r-- | public/java-segfault.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/java-segfault.md b/public/java-segfault.md index 4a4e32e..48a6872 100644 --- a/public/java-segfault.md +++ b/public/java-segfault.md @@ -70,7 +70,7 @@ executed doesn't access any other methods or properties of `o`, then it will go ahead and consider `o` eligible for garbage collection before `m()` has finished running. -That is normally a safe optimization to make... except for when a +That is normally a safe optimization to make⦠except for when a destructor method (`finalize()`) is defined for the object; the destructor can have side effects, and Java has no way to know whether it is safe for them to happen before `m()` has finished running. |