Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ deleteObserver
Method
deleteObserver
classpath/java/util/Observable.java:33–40 ·
view source on GitHub ↗
(Observer o)
Source
from the content-addressed store, hash-verified
31
}
32
33
public
void
deleteObserver(Observer o) {
34
if
(o == null) {
35
throw
new
NullPointerException();
36
}
37
synchronized(this) {
38
observers.remove(o);
39
}
40
}
41
42
public
void
notifyObservers() {
43
notifyObservers(null);
Callers
1
main
Method · 0.80
Calls
1
remove
Method · 0.65
Tested by
1
main
Method · 0.64