From f2160f4bd1c8ac67e5a86a6710d431e8932877f9 Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Fri, 28 May 2010 11:47:51 +0000
Subject: [PATCH] Synchronize SDK on java.net with internal repository.
---
sdk/tests/unit-tests-testng/src/org/opends/sdk/SuiteRunner.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sdk/tests/unit-tests-testng/src/org/opends/sdk/SuiteRunner.java b/sdk/tests/unit-tests-testng/src/org/opends/sdk/SuiteRunner.java
index e8bbb7b..1e9fd98 100755
--- a/sdk/tests/unit-tests-testng/src/org/opends/sdk/SuiteRunner.java
+++ b/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);
--
Gitblit v1.10.0