a new fuse mountpoint has been found
| 4 | * a new fuse mountpoint has been found |
| 5 | */ |
| 6 | public class FuseBind implements Event { |
| 7 | public final String source, mountpoint; |
| 8 | |
| 9 | public FuseBind(String source, String mountpoint) { |
| 10 | this.source = source; |
| 11 | this.mountpoint = mountpoint; |
| 12 | } |
| 13 | |
| 14 | @Override |
| 15 | public String toString() { |
| 16 | return String.format("FuseBind: { source='%s', mountpoint='%s' }", this.source, this.mountpoint); |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected