Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/castello/spring_basic
/ close
Method
close
ch3/UserDao.java:155–158 ·
view source on GitHub ↗
(AutoCloseable... acs)
Source
from the content-addressed store, hash-verified
153
}
154
155
private
void
close(AutoCloseable... acs) {
156
for
(AutoCloseable ac :acs)
157
try {
if
(ac!=null) ac.close(); } catch(Exception e) { e.printStackTrace(); }
158
}
159
}
Callers
7
deleteUser
Method · 0.95
selectUser
Method · 0.95
insertUser
Method · 0.95
service
Method · 0.45
main
Method · 0.45
main
Method · 0.45
service
Method · 0.45
Implementers
1
UserDaoImpl
ch3/UserDaoImpl.java
Calls
no outgoing calls
Tested by
no test coverage detected