Skip to content

Commit 6f6c6a5

Browse files
committed
Finish renaming from 4922845
1 parent 4922845 commit 6f6c6a5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/org/cryptomator/integrations/mount/MountService.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,20 @@ default int getDefaultLoopbackPort() {
6262
}
6363

6464
/**
65-
* Mount features supported by this provider.
65+
* Mount capabilites supported by this provider.
6666
*
6767
* @return Set of supported {@link MountCapability}s
6868
*/
69-
Set<MountCapability> supportedFeatures();
69+
Set<MountCapability> capabilities();
7070

7171
/**
72-
* Tests whether this provider supports the given feature.
72+
* Tests whether this provider supports the given capability.
7373
*
74-
* @param feature The feature
74+
* @param capability The capability
7575
* @return {@code true} if supported
7676
*/
77-
default boolean supportsFeature(MountCapability feature) {
78-
return supportedFeatures().contains(feature);
77+
default boolean supportsCapability(MountCapability capability) {
78+
return capabilities().contains(capability);
7979
}
8080

8181

0 commit comments

Comments
 (0)