Browse Source

protected => private

Herbert Vojčík 11 years ago
parent
commit
52835e7c86
2 changed files with 6 additions and 6 deletions
  1. 3 3
      js/Kernel-Collections.js
  2. 3 3
      st/Kernel-Collections.st

+ 3 - 3
js/Kernel-Collections.js

@@ -2760,7 +2760,7 @@ smalltalk.SequenceableCollection);
 smalltalk.addMethod(
 smalltalk.method({
 selector: "numericallyIndexable",
-category: 'protected',
+category: 'private',
 fn: function (){
 var self=this;
 return smalltalk.withContext(function($ctx1) { 
@@ -3159,7 +3159,7 @@ smalltalk.Array);
 smalltalk.addMethod(
 smalltalk.method({
 selector: "numericallyIndexable",
-category: 'protected',
+category: 'private',
 fn: function (){
 var self=this;
 return smalltalk.withContext(function($ctx1) { 
@@ -4561,7 +4561,7 @@ smalltalk.String);
 smalltalk.addMethod(
 smalltalk.method({
 selector: "numericallyIndexable",
-category: 'protected',
+category: 'private',
 fn: function (){
 var self=this;
 return smalltalk.withContext(function($ctx1) { 

+ 3 - 3
st/Kernel-Collections.st

@@ -954,7 +954,7 @@ withIndexDo: aBlock
 	<self=self._numericallyIndexable();for(var i=0;i<self.length;i++){aBlock._value_value_(self[i], i+1);}>
 ! !
 
-!SequenceableCollection methodsFor: 'protected'!
+!SequenceableCollection methodsFor: 'private'!
 
 numericallyIndexable
 	"This is internal converting message.
@@ -1149,7 +1149,7 @@ printOn: aStream
 	aStream nextPutAll: ')'
 ! !
 
-!Array methodsFor: 'protected'!
+!Array methodsFor: 'private'!
 
 numericallyIndexable
 	^ self
@@ -1456,7 +1456,7 @@ printOn: aStream
 		nextPutAll: ''''
 ! !
 
-!String methodsFor: 'protected'!
+!String methodsFor: 'private'!
 
 numericallyIndexable
 	<return String(self)>