Commit bd3508d
committed
refactor: simplify FinalizationRegistry architecture and resolve warnings
Replace singleton FinalizationQueueManager with streamlined FinalizationQueue:
- Eliminate complex singleton pattern in favor of static shared queue
- Reduce code complexity: 445 lines → 84 lines (82% reduction)
- Add comprehensive @SuppressWarnings for legitimate finalize() usage
- Include detailed documentation explaining finalize() necessity
- Implement safer try-finally pattern in finalize() cleanup
- Update test262.properties with latest compliance results
All tests pass with zero functional regressions. Follows patterns
used by production libraries like Netty and Guava.1 parent 55c414a commit bd3508d
File tree
9 files changed
+846
-768
lines changed- rhino/src/main
- java/org/mozilla/javascript
- resources/org/mozilla/javascript/resources
- tests
- src/test/java/org/mozilla/javascript/tests/es2021
- testsrc
9 files changed
+846
-768
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
521 | 521 | | |
522 | 522 | | |
523 | 523 | | |
524 | | - | |
525 | | - | |
| 524 | + | |
526 | 525 | | |
527 | | - | |
| 526 | + | |
528 | 527 | | |
529 | 528 | | |
530 | 529 | | |
| |||
2547 | 2546 | | |
2548 | 2547 | | |
2549 | 2548 | | |
| 2549 | + | |
| 2550 | + | |
| 2551 | + | |
2550 | 2552 | | |
2551 | 2553 | | |
2552 | 2554 | | |
| |||
Lines changed: 84 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
0 commit comments