Hello, I have one doubt. I am using VERY BIG Help file in JEditorPane ( to show online help) as follow. URL url = ClassLoader.getSystemResource(fileName); pane = new JEditorPane(url); .................. ................. Now what should I make null, in finalize method, to free up non java resource ? should it be url ? or pane ? i.e. should it be url = null; or pane = null; in finalize method. thanks in advance. Devu
If url is a class member, you should set both to null. If it's a local reference that goes away on the completion of its enclosing method, it would seem like setting pane to null is sufficient. There's no significant cost in dong both when you're not sure, though. ------------------ Michael Ernest, co-author of: The Complete Java 2 Certification Study Guide
Make visible what, without you, might perhaps never have been seen. - Robert Bresson
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.