Skip to content

Commit 67dd524

Browse files
committed
type hint
1 parent 7885585 commit 67dd524

File tree

1 file changed

+2
-2
lines changed
  • hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util

1 file changed

+2
-2
lines changed

hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/util/SignalUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public static class Signal {
6363
private static final DynMethods.UnboundMethod GET_NAME_UNBOUND_METHOD =
6464
new DynMethods.Builder("getName").impl(JDK_SIGNAL_CLAZZ).build();
6565

66-
private final Object delegate;
66+
private final Object/* sun.misc.SignalHandler */ delegate;
6767
private final DynMethods.BoundMethod getNumberMethod;
6868
private final DynMethods.BoundMethod getNameMethod;
6969

@@ -117,7 +117,7 @@ public interface Handler {
117117

118118
static class JdkSignalHandlerImpl implements Handler {
119119

120-
private final Object delegate;
120+
private final Object/* sun.misc.Signal */ delegate;
121121
private final DynMethods.BoundMethod jdkSignalHandlerHandleMethod;
122122

123123
JdkSignalHandlerImpl(Handler handler) {

0 commit comments

Comments
 (0)