File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
paimon-common/src/main/java/org/apache/paimon/utils Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ public Future<?> submit(Runnable task) {
112112 public void execute (Runnable command ) {
113113 try {
114114 this .queueingPermits .acquire ();
115- } catch (InterruptedException var3 ) {
115+ } catch (InterruptedException e ) {
116116 Thread .currentThread ().interrupt ();
117117 }
118118
@@ -135,11 +135,11 @@ public int getPermitCount() {
135135 public String toString () {
136136 return "SemaphoredDelegatingExecutor{"
137137 + "permitCount="
138- + this . getPermitCount ()
138+ + getPermitCount ()
139139 + ", available="
140- + this . getAvailablePermits ()
140+ + getAvailablePermits ()
141141 + ", waiting="
142- + this . getWaitingCount ()
142+ + getWaitingCount ()
143143 + '}' ;
144144 }
145145
You can’t perform that action at this time.
0 commit comments