- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {LocalDateTime l =
new LocalDateTime()
LocalDateTime.now()
DateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
- Smart code suggestions by Codota
}
/** * Shuts down the Snow Owl application by performing shut down logic. */ public void shutdown() { if (isRunning()) { LOG.info("Snow Owl is shutting down."); this.environment.services().dispose(); LifecycleUtil.deactivate(environment.container()); running.set(false); } }