UnixOperatingSystem.st
changeset 15151 60e0fcf07b17
parent 15129 2a0db5d6749f
child 15152 2252471df4ae
--- a/UnixOperatingSystem.st	Thu Apr 25 09:37:05 2013 +0200
+++ b/UnixOperatingSystem.st	Thu Apr 25 09:48:09 2013 +0200
@@ -7315,7 +7315,7 @@
 
     "we prefer OrderedDictionary here, because we want to keep the 
      order as defined in the OS. But OrderedDictionary is in libbasic2."
-    retDictionary := OrderedDictionary ? Dictionary new:noOfIf.
+    retDictionary := OrderedDictionary new:noOfIf.
     1 to:noOfIf do:[:cnt|
         |macAddress|
         
@@ -13494,11 +13494,11 @@
 !UnixOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.309 2013-04-22 15:51:25 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.310 2013-04-25 07:48:09 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.309 2013-04-22 15:51:25 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.310 2013-04-25 07:48:09 stefan Exp $'
 ! !