JavaContext.st
branchcvs_MAIN_tracking
changeset 3384 98eb8443f4f4
parent 3324 a58245c0e83a
child 3386 ddcff50a1fdc
--- a/JavaContext.st	Wed Feb 25 19:45:09 2015 +0100
+++ b/JavaContext.st	Mon Mar 02 14:21:07 2015 +0000
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1996-2015 by Claus Gittinger
 
@@ -20,6 +22,8 @@
 "
 "{ Package: 'stx:libjava' }"
 
+"{ NameSpace: Smalltalk }"
+
 Context variableSubclass:#JavaContext
 	instanceVariableNames:'exArg exPC byteCode constPool acqrMonitors'
 	classVariableNames:''
@@ -410,7 +414,7 @@
         Logger 
             log: ('removeMonitor: called but no monitors in acqrMonitors (%1)' 
                     bindWith: self)
-            severity: #warn
+            severity: Logger severityWARN
             facility: #JVM.
         self breakPoint: #mh.
         ^ self.
@@ -422,7 +426,7 @@
             Logger 
                 log: ('removeMonitor: called but no such monitor in acqrMonitors (%1)' 
                         bindWith: self)
-                severity: #warn
+                severity: Logger severityWARN
                 facility: #JVM.
             self breakPoint: #mh.
             ^ self.
@@ -430,8 +434,8 @@
         acqrMonitors isEmpty ifTrue: [self unmarkForUnwind].
 
     "Created: / 08-11-2011 / 14:19:58 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
-    "Modified: / 08-11-2011 / 21:39:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 17-11-2011 / 19:14:29 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
+    "Modified: / 02-03-2015 / 14:07:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !JavaContext methodsFor:'exception handler support'!