Files
briar/briar-desktop/src/org/briarproject/plugins/file/MacRemovableDriveMonitor.java

10 lines
202 B
Java

package org.briarproject.plugins.file;
class MacRemovableDriveMonitor extends UnixRemovableDriveMonitor {
@Override
protected String[] getPathsToWatch() {
return new String[] { "/Volumes" };
}
}