Sfoglia il codice sorgente

REPL.st: fix deprecation warning

use Class>>subclass:instanceVariableNames:package:
instead of Class>>subclass:instanceVariableNames:category:
Manfred Kroehnert 11 anni fa
parent
commit
eaea314d51
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      repl/REPL.st

+ 1 - 1
repl/REPL.st

@@ -1,6 +1,6 @@
 Object subclass: #Repl
 	instanceVariableNames: 'readline interface util'
-	category: 'REPL'!
+	package: 'REPL'!
 
 !Repl methodsFor: 'accessing'!