1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-06 09:13:45 -09:00

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) { } catch (Exception ex) {
handleException(ex); handleException(ex);
} }
return null; return Optional.empty();
} }
@Override @Override