Remove not needed null check (#11303)
Motivation: throw exception if there is no method, it never is null, condition is always true Modification: remove unnecessary condition Result: cleanup
This commit is contained in:
parent
9d01814a3b
commit
7a1e0b46b6
@ -180,7 +180,7 @@ final class ChannelHandlerMask {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return m != null && m.isAnnotationPresent(Skip.class);
|
return m.isAnnotationPresent(Skip.class);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user