ZipArchive.st
changeset 5470 416a04cb68ba
parent 5435 116c766a2f27
--- a/ZipArchive.st	Fri Mar 20 13:01:09 2020 +0100
+++ b/ZipArchive.st	Tue Mar 24 11:09:20 2020 +0100
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1998 by eXept Software AG
 	      All Rights Reserved
@@ -3500,6 +3498,18 @@
     "Modified: / 15-11-2019 / 19:31:15 / Stefan Vogel"
 ! !
 
+!ZipArchive methodsFor:'printing'!
+
+printOn:aStream
+    aStream 
+        nextPutAll:self className;
+        nextPut:$(;
+        print:archiveName;
+        nextPut:$).
+
+    "Created: / 20-03-2020 / 14:43:46 / Stefan Vogel"
+! !
+
 !ZipArchive methodsFor:'private'!
 
 closeFile