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

com.sampullara.mustache.IdentityScope Maven / Gradle / Ivy

package com.sampullara.mustache;

import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;

/**
 * Used to reproduce markup from code.
 */
public class IdentityScope extends Scope {
  public final static IdentityScope one = new IdentityScope();

  private IdentityScope() {}

  @Override
  public Object get(Object o) {
    return one;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy