summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt.tools/NativeStats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt.tools/NativeStats')
-rw-r--r--bundles/org.eclipse.swt.tools/NativeStats/org/eclipse/swt/tools/internal/NativeStats.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/bundles/org.eclipse.swt.tools/NativeStats/org/eclipse/swt/tools/internal/NativeStats.java b/bundles/org.eclipse.swt.tools/NativeStats/org/eclipse/swt/tools/internal/NativeStats.java
index 8426050949..e4bd56b64f 100644
--- a/bundles/org.eclipse.swt.tools/NativeStats/org/eclipse/swt/tools/internal/NativeStats.java
+++ b/bundles/org.eclipse.swt.tools/NativeStats/org/eclipse/swt/tools/internal/NativeStats.java
@@ -23,16 +23,16 @@ import java.util.Hashtable;
* 2) Add the following code around the sections of interest to dump the
* native calls done in that section.
*
- * NativeStats stats = new NativeStats();
- * ...
- * <code section>
- * ...
- * stats.dumpDiff(System.out);
+ * NativeStats stats = new NativeStats();
+ * ...
+ * <code section>
+ * ...
+ * stats.dumpDiff(System.out);
*
* 3) Or add the following code at a given point to dump a snapshot of
* the native calls done until that point.
*
- * new NativeStats().dumpSnapshot(System.out);
+ * new NativeStats().dumpSnapshot(System.out);
*/
public class NativeStats {