File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
src/main/java/org/cryptomator/integrations/mount Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments