Skip to content

Commit 5c92b3a

Browse files
committed
add missing class
1 parent 2da2da6 commit 5c92b3a

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package org.cryptomator.integrations.common;
2+
3+
@CheckAvailability
4+
public class InitExceptionTestClass {
5+
6+
private static final String TEST;
7+
8+
static {
9+
TEST = throwSomethig();
10+
}
11+
12+
public InitExceptionTestClass() {
13+
14+
}
15+
16+
static String throwSomethig() {
17+
throw new RuntimeException("STATIC FAIL");
18+
}
19+
20+
@CheckAvailability
21+
public static boolean test() {
22+
return true;
23+
}
24+
25+
}

0 commit comments

Comments
 (0)