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
5e71336ffb
commit
a743b74bfb
@ -179,7 +179,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