You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2017/03/04 10:25:48 UTC

svn commit: r1785457 - /jmeter/trunk/src/jorphan/org/apache/jorphan/util/ThreadDumper.java

Author: fschumacher
Date: Sat Mar  4 10:25:48 2017
New Revision: 1785457

URL: http://svn.apache.org/viewvc?rev=1785457&view=rev
Log:
Typo and spacepolice.

Modified:
    jmeter/trunk/src/jorphan/org/apache/jorphan/util/ThreadDumper.java

Modified: jmeter/trunk/src/jorphan/org/apache/jorphan/util/ThreadDumper.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/jorphan/org/apache/jorphan/util/ThreadDumper.java?rev=1785457&r1=1785456&r2=1785457&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/util/ThreadDumper.java (original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/util/ThreadDumper.java Sat Mar  4 10:25:48 2017
@@ -44,7 +44,7 @@ public class ThreadDumper {
 
     /**
      * @return Name of file containing thread dump
-     * @throws Exception if file cannot we written
+     * @throws Exception if file cannot be written
      */
     public static String threadDump() throws Exception {
         return threadDump(new File(".")); //$NON-NLS-1$
@@ -67,11 +67,11 @@ public class ThreadDumper {
         }
         return path;
     }
-    
+
     /**
      * Write Thread Dump 
      * @param writer {@link Writer}
-     * @throws IOException if file cannot we written
+     * @throws IOException if file cannot be written
      */
     public static void writeThreadDump(Writer writer) throws IOException {
         ThreadMXBean threadMxBean = ManagementFactory.getThreadMXBean();