Searched defs:closer (Results 1 - 1 of 1) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/
H A DCloseGuard.java168 * {@code closer} method instead of relying on finalization.
170 * @param closer non-null name of explicit termination method
171 * @throws NullPointerException if closer is null, regardless of
174 public void open(String closer) { argument
176 if (closer == null) {
177 throw new NullPointerException("closer == null");
183 String message = "Explicit termination method '" + closer + "' not called";

Completed in 126 milliseconds