public JobUpdateBuilder put()

in src/main/java/org/apache/sling/jobs/impl/JobUpdateBuilderImpl.java [75:82]


    public JobUpdateBuilder put(@NotNull String name, @Nullable Object value) {
        if ( value == null) {
            this.updateProperties.put(name, JobUpdate.JobPropertyAction.REMOVE);
        } else {
            this.updateProperties.put(name, value);
        }
        return this;
    }