Skip to content

Commit

Permalink
fix test again
Browse files Browse the repository at this point in the history
  • Loading branch information
radioegor146 committed Feb 5, 2024
1 parent fa72f87 commit 354863e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Main pipeline
on: [push]
jobs:
build:
continue-on-error: true
strategy:
matrix:
java: [1.8, 9.0.x, 10, 11.0.x, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ private static void printStackTrace() {
if ("ANDROID".equals(platform) && stack[i].getClassName().equals("native0.hidden.Hidden0")) {
continue;
}
System.out.printf("%d: %s.%s\n", i, stack[i].getClassName(), stack[i].getMethodName());
System.out.printf("%s.%s\n", i, stack[i].getClassName(), stack[i].getMethodName());
}
}

Expand Down

0 comments on commit 354863e

Please sign in to comment.