View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.module.launcher.util;
8   
9   import java.util.concurrent.locks.ReentrantLock;
10  
11  /**
12   *
13   */
14  public class DebuggableReentrantLock extends ReentrantLock
15  {
16  
17      public DebuggableReentrantLock()
18      {
19      }
20  
21      public DebuggableReentrantLock(boolean fair)
22      {
23          super(fair);
24      }
25  
26      @Override
27      public Thread getOwner()
28      {
29          return super.getOwner();
30      }
31  }