MCPcopy Index your code
hub / github.com/zaproxy/zaproxy / run

Method run

zap/src/main/java/org/parosproxy/paros/model/Session.java:268–279  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

266 new Thread(
267 new Runnable() {
268 @Override
269 public void run() {
270 Exception thrownException = null;
271 try {
272 open(file.getAbsolutePath());
273 } catch (Exception e) {
274 thrownException = e;
275 }
276 if (callback != null) {
277 callback.sessionOpened(file, thrownException);
278 }
279 }
280 });
281 t.setPriority(Thread.NORM_PRIORITY - 2);
282 t.start();

Callers

nothing calls this directly

Calls 15

openMethod · 0.95
getSiteTreeMethod · 0.95
setIncludedInScopeMethod · 0.95
isIncludedInScopeMethod · 0.95
setExcludedFromScopeMethod · 0.95
isExcludedFromScopeMethod · 0.95
saveMethod · 0.95
snapshotMethod · 0.95
refreshScopeMethod · 0.95
getSingletonMethod · 0.95
getAbsolutePathMethod · 0.80
sessionOpenedMethod · 0.65

Tested by

no test coverage detected