package com.rpl.specter;

public class Util {
  public static Object[] makeObjectArray(int size) {
    return new Object[size];
  }
}
