public static void skip()

in src/main/java/org/apache/datasketches/Files.java [791:802]


  public static void skip(final Reader in, final long skipLen) {
    try {
      in.skip(skipLen);
    } catch (final IOException e) {
      try {
        in.close();
      } catch (final IOException f) {
        throw new RuntimeException(LS + "Close Unsuccessful" + LS + f);
      }
      throw new RuntimeException(LS + "Reader.skip(len) unsuccessful: " + LS + e);
    }
  }