public Kryo newKryo()

in chill-java/src/main/java/com/twitter/chill/config/ReflectingInstantiator.java [127:133]


  public Kryo newKryo() {
    try {
      return newKryoWithEx();
    }
    catch(InstantiationException x) { throw new RuntimeException(x); }
    catch(IllegalAccessException x) { throw new RuntimeException(x); }
  }