diff --git a/core/src/main/groovy/com/muwire/core/files/DirectoryUnsharedEvent.groovy b/core/src/main/groovy/com/muwire/core/files/DirectoryUnsharedEvent.groovy index 9c9ea545..f330d40e 100644 --- a/core/src/main/groovy/com/muwire/core/files/DirectoryUnsharedEvent.groovy +++ b/core/src/main/groovy/com/muwire/core/files/DirectoryUnsharedEvent.groovy @@ -4,4 +4,8 @@ import com.muwire.core.Event class DirectoryUnsharedEvent extends Event { File directory + + public String toString() { + super.toString() + " unshared directory "+ directory.toString() + } }