public synchronized Optional getGuestNotice()

in termsOfService-server/src/main/java/jetbrains/buildServer/termsOfService/TermsOfServiceManagerImpl.java [285:291]


    public synchronized Optional<GuestNotice> getGuestNotice() {
        if (myGuestNotice == null) {
            return Optional.empty();
        }

        return Optional.of(myGuestNotice);
    }