All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rauberprojects.client.transclude.NoopTranscluder Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.github.rauberprojects.client.transclude;


import com.github.rauberprojects.client.context.Context;
import com.github.rauberprojects.client.model.Data;
import com.github.rauberprojects.client.transclude.Transcluder;

/**
 * A no-operation transcluder that can be used if transclusion is not desired.
 */
public class NoopTranscluder implements Transcluder {
    @Override
    public Context transclude(Data data, Context oldContext, Context newContext) {
        return newContext;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy