Skip to content

Commit

Permalink
Fix violations of Sonar rule 2142 (#488)
Browse files Browse the repository at this point in the history
  • Loading branch information
khaes-kth authored Dec 4, 2021
1 parent fad2a58 commit 911091a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ public static void tearDown() throws Exception {
try {
Thread.sleep(100);
} catch (InterruptedException ignored) {
Thread.currentThread().interrupt();

}
server.stop();
Expand Down
1 change: 1 addition & 0 deletions src/test/java/com/networknt/schema/Issue425Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public static void tearDown() throws Exception {
try {
Thread.sleep(100);
} catch (InterruptedException ignored) {
Thread.currentThread().interrupt();

}
server.stop();
Expand Down
1 change: 1 addition & 0 deletions src/test/java/com/networknt/schema/Issue428Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public static void tearDown() throws Exception {
try {
Thread.sleep(100);
} catch (InterruptedException ignored) {
Thread.currentThread().interrupt();

}
server.stop();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public static void tearDown() throws Exception {
try {
Thread.sleep(100);
} catch (InterruptedException ignored) {
Thread.currentThread().interrupt();

}
server.stop();
Expand Down

0 comments on commit 911091a

Please sign in to comment.