Home | History | Annotate | Download | only in reporters
      1 package org.testng.reporters;
      2 
      3 public class Buffer {
      4   public static IBuffer create() {
      5     return new FileStringBuffer();
      6   }
      7 }
      8