Skip to content

Commit 3b9ba32

Browse files
committed
minor
1 parent d4be5e4 commit 3b9ba32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

paimon-common/src/main/java/org/apache/paimon/utils/SemaphoredDelegatingExecutor.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)