From 29562c42ea129306100a6292f70a566490abeb68 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Sun, 27 Oct 2019 05:12:01 +0000 Subject: [PATCH] add toString() --- .../com/muwire/core/files/DirectoryUnsharedEvent.groovy | 4 ++++ 1 file changed, 4 insertions(+) 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() + } }