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

autofixture.generators.objects.implementationdetails.Debug Maven / Gradle / Ivy

package autofixture.generators.objects.implementationdetails;

/**
 * Created by grzes on 25.11.2016.
 */
public class Debug {
    public static void print(Exception t) {
      if(System.getenv("AUTOFIXTUREGENERATOR_DEBUG") != null) {
        System.out.println(t);
      }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy