Skip to content

Commit a9c73a1

Browse files
author
Tilmann Zäschke
committed
Refactoring and fixes
1 parent 8c69fe4 commit a9c73a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/scion/multiping/PingAll.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public static void main(String[] args) throws IOException {
106106
ResultSummary run() throws IOException {
107107
List<ParseAssignments.HostEntry> allASes = service.getIsdAsEntries();
108108
// remove entry for local AS
109-
long localAS = Scion.defaultService().getLocalIsdAs();
109+
long localAS = service.getLocalIsdAs();
110110
allASes = allASes.stream().filter(e -> e.getIsdAs() != localAS).collect(Collectors.toList());
111111
// Process all ASes
112112
for (ParseAssignments.HostEntry e : allASes) {

0 commit comments

Comments
 (0)