UDSocketAddress.st
changeset 488 b0c17a5ff8ea
parent 113 c411109c7205
child 799 b109b39813b4
--- a/UDSocketAddress.st	Sat Jan 25 00:19:53 1997 +0100
+++ b/UDSocketAddress.st	Mon Jan 27 12:38:24 1997 +0100
@@ -11,10 +11,10 @@
 "
 
 SocketAddress subclass:#UDSocketAddress
-	 instanceVariableNames:'name'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'ST80-Compatibility'
+	instanceVariableNames:'name'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'ST80-Compatibility'
 !
 
 !UDSocketAddress class methodsFor:'documentation'!
@@ -33,10 +33,6 @@
 "
 !
 
-version
-    ^ '$Header: /cvs/stx/stx/libbasic2/UDSocketAddress.st,v 1.3 1995-11-11 15:33:35 cg Exp $'
-!
-
 documentation
 "
     Instances of UDSocketAddress represent unix-domain socket names.
@@ -82,15 +78,20 @@
 
 !UDSocketAddress methodsFor:'queries'!
 
+address
+    ^ nil
+!
+
 hostName
     ^ 'localhost'
 !
 
 portOrName
     ^ name
-!
-
-address
-    ^ nil
 ! !
 
+!UDSocketAddress class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic2/UDSocketAddress.st,v 1.4 1997-01-27 11:38:15 cg Exp $'
+! !