Explorar o código

REPL.st: fix deprecation warning

use Class>>subclass:instanceVariableNames:package:
instead of Class>>subclass:instanceVariableNames:category:
Manfred Kroehnert %!s(int64=11) %!d(string=hai) anos
pai
achega
eaea314d51
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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'!