NoOp.java 869 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  com.day.cq.replication.ReplicationActionType
 *  com.scene7.is.catalog.service.publish.atomic.PublishingService
 *  org.apache.sling.api.resource.ResourceResolver
 */
package com.adobe.cq.dam.aod.replication.helpers;

import com.adobe.cq.dam.aod.replication.helpers.Replicator;
import com.day.cq.replication.ReplicationActionType;
import com.scene7.is.catalog.service.publish.atomic.PublishingService;
import org.apache.sling.api.resource.ResourceResolver;

class NoOp
extends Replicator {
    private static final Replicator INSTANCE = new NoOp();

    static Replicator instance() {
        return INSTANCE;
    }

    @Override
    void build(ReplicationActionType actionType, ResourceResolver resolver, String path, PublishingService delegate) {
    }

    private NoOp() {
    }
}