public ShortIdentifier()

in src/main/java/com/microsoft/appcenter/event/ShortIdentifier.java [17:22]


    public ShortIdentifier(String input) {
        if (input == null || input == "") {
            throw new IllegalArgumentException("input must be a string with contents");
        }
        this.shortId = shortId(input);
    }