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

io.honeybadger.com.github.mustachejava.util.InternalArrayList Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.github.mustachejava.util;

import java.util.ArrayList;
import java.util.Collection;

/**
 * Used internally for passing around the scopes.
 */
public class InternalArrayList extends ArrayList {
  public InternalArrayList(Collection c) {
    super(c.size());
    addAll(c);
  }

  public InternalArrayList() {
    super();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy