From def71d97a971a5918b83535b7db03ba9e6f81a28 Mon Sep 17 00:00:00 2001 From: Marcus Denker Date: Fri, 26 May 2023 14:09:02 +0200 Subject: [PATCH] remove #VariableNotDeclared, the class has been deprecated --- src/NewTools-Debugger/StDebuggerErrorContextPredicate.class.st | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NewTools-Debugger/StDebuggerErrorContextPredicate.class.st b/src/NewTools-Debugger/StDebuggerErrorContextPredicate.class.st index ad0b7f74b..368da8b4d 100644 --- a/src/NewTools-Debugger/StDebuggerErrorContextPredicate.class.st +++ b/src/NewTools-Debugger/StDebuggerErrorContextPredicate.class.st @@ -55,7 +55,7 @@ StDebuggerErrorContextPredicate >> isContextDoesNotUnderstand [ { #category : #predicates } StDebuggerErrorContextPredicate >> isContextMissingClassException [ - ^ #(#VariableNotDeclared #UndeclaredVariableRead #UndeclaredVariableWrite) includes: exception class name + ^ #(#UndeclaredVariableRead #UndeclaredVariableWrite) includes: exception class name ] { #category : #predicates }