# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: /Users/niko/projects/jruby.svn/src/org/jruby/internal/runtime # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: ThreadService.java *** /Users/niko/projects/jruby.svn/src/org/jruby/internal/runtime/ThreadService.java Base (BASE) --- /Users/niko/projects/jruby.svn/src/org/jruby/internal/runtime/ThreadService.java Locally Modified (Based On LOCAL) *************** *** 158,164 **** return rubyThread; } ! public synchronized void setCritical(boolean critical) { if (criticalLock.isHeldByCurrentThread()) { if (critical) { // do nothing --- 158,164 ---- return rubyThread; } ! public void setCritical(boolean critical) { if (criticalLock.isHeldByCurrentThread()) { if (critical) { // do nothing *************** *** 174,180 **** } } ! public synchronized boolean getCritical() { return criticalLock.isHeldByCurrentThread(); } --- 174,180 ---- } } ! public boolean getCritical() { return criticalLock.isHeldByCurrentThread(); }