1 package test;2 3 import java.lang.ref.WeakReference ;4 import javax.swing.text.Document ;5 6 public class BLE91246 {7 8 public void test() {9 Document doc = null;10 11 doc.putProperty(Document .class, new WeakReference <Document >(null) {});12 }13 14 }15