#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Sun, 03 Mar 2019 00:27:11 +0100
changeset 23807 e855759f5cab
parent 23806 c2dcab4ec688
child 23808 bd5b62807994
#REFACTORING by cg class: UnboxedIntegerArray class moved: #maxVal #minVal
UnboxedIntegerArray.st
--- a/UnboxedIntegerArray.st	Sun Mar 03 00:26:13 2019 +0100
+++ b/UnboxedIntegerArray.st	Sun Mar 03 00:27:11 2019 +0100
@@ -61,18 +61,6 @@
      Abstract subclasses must redefine this again."
 
     ^ self == UnboxedIntegerArray
-!
-
-maxVal
-    "the maximum value which can be stored in instances of me"
-    
-    ^ self subclassResponsibility.
-!
-
-minVal
-    "the minimum value which can be stored in instances of me"
-    
-    ^ self subclassResponsibility.
 ! !
 
 !UnboxedIntegerArray methodsFor:'printing'!