Fix checkstyle

This commit is contained in:
Christian Schneider 2015-11-24 14:30:47 +01:00
parent 7afe263089
commit b44290df75
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ public class LibaioContext<Callback extends SubmitInfo> implements Closeable {
*/ */
private static <T> T checkNotNull(T arg, String text) { private static <T> T checkNotNull(T arg, String text) {
if (arg == null) { if (arg == null) {
throw new NullPointerException(text); throw new NullPointerException(text);
} }
return arg; return arg;
} }