Skip to content

Commit

Permalink
Merge branch 'develop' into release/1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
overheadhunter committed Mar 7, 2022
2 parents 0f9c99a + fad104c commit 1987c3e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
requires static org.jetbrains.annotations;

exports org.cryptomator.integrations.autostart;
exports org.cryptomator.integrations.common;
exports org.cryptomator.integrations.keychain;
exports org.cryptomator.integrations.tray;
exports org.cryptomator.integrations.uiappearance;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.cryptomator.integrations.common;

import org.jetbrains.annotations.ApiStatus;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Repeatable;
Expand All @@ -16,6 +18,7 @@
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Repeatable(OperatingSystem.OperatingSystems.class)
@ApiStatus.Experimental
public @interface OperatingSystem {
Value value() default Value.UNKNOWN;

Expand Down

0 comments on commit 1987c3e

Please sign in to comment.