mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-18 05:39:53 +01:00
10 lines
202 B
Java
10 lines
202 B
Java
package org.briarproject.plugins.file;
|
|
|
|
class MacRemovableDriveMonitor extends UnixRemovableDriveMonitor {
|
|
|
|
@Override
|
|
protected String[] getPathsToWatch() {
|
|
return new String[] { "/Volumes" };
|
|
}
|
|
}
|