fix return of Optional

This commit is contained in:
Ingmar Goudt 2018-09-27 22:15:14 +02:00
parent 226019be89
commit a603c5e62c

View file

@ -672,7 +672,7 @@ public class MageServerImpl implements MageServer {
} catch (Exception ex) {
handleException(ex);
}
return null;
return Optional.empty();
}
@Override