@@ -319,31 +319,31 @@ protected Collection<Entrypoint> buildCallGraph(EclipseProjectAnalysisEngine<Ins
319
319
// find explicit entry points.
320
320
entryPoints = Util .findEntryPoints (engine .getClassHierarchy ());
321
321
entryPoints .forEach (ep -> LOGGER .info (() -> "Adding explicit entry point: " + ep ));
322
- }
323
322
324
- if (this .shouldFindImplicitEntryPoints ()) {
325
- // also find implicit entry points.
326
- Iterable <Entrypoint > mainEntrypoints = makeMainEntrypoints (engine .getClassHierarchy ().getScope (),
327
- engine .getClassHierarchy ());
323
+ if (this .shouldFindImplicitEntryPoints ()) {
324
+ // also find implicit entry points.
325
+ Iterable <Entrypoint > mainEntrypoints = makeMainEntrypoints (engine .getClassHierarchy ().getScope (),
326
+ engine .getClassHierarchy ());
328
327
329
- // add them as well.
330
- addImplicitEntryPoints (entryPoints , mainEntrypoints );
331
- }
328
+ // add them as well.
329
+ addImplicitEntryPoints (entryPoints , mainEntrypoints );
330
+ }
332
331
333
- if (this .shouldFindImplicitTestEntryPoints ()) {
334
- // try to find test entry points.
335
- Iterable <Entrypoint > jUnitEntryPoints = JUnitEntryPoints .make (engine .getClassHierarchy ());
332
+ if (this .shouldFindImplicitTestEntryPoints ()) {
333
+ // try to find test entry points.
334
+ Iterable <Entrypoint > jUnitEntryPoints = JUnitEntryPoints .make (engine .getClassHierarchy ());
336
335
337
- // add them as well.
338
- addImplicitEntryPoints (entryPoints , jUnitEntryPoints );
339
- }
336
+ // add them as well.
337
+ addImplicitEntryPoints (entryPoints , jUnitEntryPoints );
338
+ }
340
339
341
- if (this .shouldFindImplicitBenchmarkEntryPoints ()) {
342
- // try to find benchmark entry points.
343
- Set <Entrypoint > benchmarkEntryPoints = Util .findBenchmarkEntryPoints (engine .getClassHierarchy ());
340
+ if (this .shouldFindImplicitBenchmarkEntryPoints ()) {
341
+ // try to find benchmark entry points.
342
+ Set <Entrypoint > benchmarkEntryPoints = Util .findBenchmarkEntryPoints (engine .getClassHierarchy ());
344
343
345
- // add them as well.
346
- addImplicitEntryPoints (entryPoints , benchmarkEntryPoints );
344
+ // add them as well.
345
+ addImplicitEntryPoints (entryPoints , benchmarkEntryPoints );
346
+ }
347
347
}
348
348
349
349
if (entryPoints .isEmpty ()) {
0 commit comments