This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-graph.git
The following commit(s) were added to refs/heads/master by this push: new 5ff1d69 Spelling 5ff1d69 is described below commit 5ff1d69cff62f382e1d1e26327d5006501d4c8fa Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Oct 22 16:30:38 2022 -0400 Spelling --- .../apache/commons/graph/utils/MultiThreadedTestRunner.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/java/org/apache/commons/graph/utils/MultiThreadedTestRunner.java b/src/test/java/org/apache/commons/graph/utils/MultiThreadedTestRunner.java index 6f175d4..867fca1 100644 --- a/src/test/java/org/apache/commons/graph/utils/MultiThreadedTestRunner.java +++ b/src/test/java/org/apache/commons/graph/utils/MultiThreadedTestRunner.java @@ -30,13 +30,13 @@ public class MultiThreadedTestRunner { final private List<Thread> th; long maxWait = 60L * 60L * 1000; - final private List<Throwable> exeptions; + final private List<Throwable> exceptions; public MultiThreadedTestRunner( TestRunner[] runnables ) { th = new ArrayList<Thread>(); - exeptions = new ArrayList<Throwable>(); + exceptions = new ArrayList<Throwable>(); for ( int i = 0; i < runnables.length; i++ ) { runnables[i].setTestRunner( this ); @@ -56,9 +56,9 @@ public class MultiThreadedTestRunner t.join( maxWait ); } - if ( this.exeptions.size() > 0 ) + if ( this.exceptions.size() > 0 ) { - throw this.exeptions.get( 0 ); + throw this.exceptions.get( 0 ); } } @@ -67,6 +67,6 @@ public class MultiThreadedTestRunner */ public void addException( Throwable e ) { - exeptions.add( e ); + exceptions.add( e ); } }