mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
28.47.2010 f2160f4bd1c8ac67e5a86a6710d431e8932877f9
sdk/tests/unit-tests-testng/src/org/opends/sdk/SuiteRunner.java
@@ -33,18 +33,18 @@
/**
 * This class wraps TestNG so that we can force the process to exit if
 * there is an uncaught exception (e.g. OutOfMemoryError).
 * This class wraps TestNG so that we can force the process to exit if there is
 * an uncaught exception (e.g. OutOfMemoryError).
 */
public class SuiteRunner
{
  public static void main(String[] args)
  public static void main(final String[] args)
  {
    try
    {
      TestNG.main(args);
    }
    catch (Throwable e)
    catch (final Throwable e)
    {
      System.err.println("TestNG.main threw an expected exception:");
      e.printStackTrace(System.err);