Skip to content

Commit 1987c3e

Browse files
Merge branch 'develop' into release/1.1.0
2 parents 0f9c99a + fad104c commit 1987c3e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
requires static org.jetbrains.annotations;
1010

1111
exports org.cryptomator.integrations.autostart;
12+
exports org.cryptomator.integrations.common;
1213
exports org.cryptomator.integrations.keychain;
1314
exports org.cryptomator.integrations.tray;
1415
exports org.cryptomator.integrations.uiappearance;

src/main/java/org/cryptomator/integrations/common/OperatingSystem.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package org.cryptomator.integrations.common;
22

3+
import org.jetbrains.annotations.ApiStatus;
4+
35
import java.lang.annotation.Documented;
46
import java.lang.annotation.ElementType;
57
import java.lang.annotation.Repeatable;
@@ -16,6 +18,7 @@
1618
@Retention(RetentionPolicy.RUNTIME)
1719
@Target({ElementType.TYPE})
1820
@Repeatable(OperatingSystem.OperatingSystems.class)
21+
@ApiStatus.Experimental
1922
public @interface OperatingSystem {
2023
Value value() default Value.UNKNOWN;
2124

0 commit comments

Comments
 (0)