From a49dee3f75d6e2548e9114d9495655dd56f06973 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 01 Mar 2007 05:18:42 +0000
Subject: [PATCH] Remove blank lines at the beginning of methods left after eliminating the debugEnter and debugConstructor calls.
---
opends/src/server/org/opends/server/plugins/profiler/ProfileStack.java | 13 -------------
1 files changed, 0 insertions(+), 13 deletions(-)
diff --git a/opends/src/server/org/opends/server/plugins/profiler/ProfileStack.java b/opends/src/server/org/opends/server/plugins/profiler/ProfileStack.java
index b9b6435..ecf6c74 100644
--- a/opends/src/server/org/opends/server/plugins/profiler/ProfileStack.java
+++ b/opends/src/server/org/opends/server/plugins/profiler/ProfileStack.java
@@ -85,7 +85,6 @@
*/
public ProfileStack(StackTraceElement[] stackElements)
{
-
numFrames = stackElements.length;
classNames = new String[numFrames];
methodNames = new String[numFrames];
@@ -123,7 +122,6 @@
private ProfileStack(String[] classNames, String[] methodNames,
int[] lineNumbers)
{
-
this.numFrames = classNames.length;
this.classNames = classNames;
this.methodNames = methodNames;
@@ -139,7 +137,6 @@
*/
public int getNumFrames()
{
-
return numFrames;
}
@@ -152,7 +149,6 @@
*/
public String[] getClassNames()
{
-
return classNames;
}
@@ -168,7 +164,6 @@
*/
public String getClassName(int depth)
{
-
return classNames[depth];
}
@@ -181,7 +176,6 @@
*/
public String[] getMethodNames()
{
-
return methodNames;
}
@@ -197,7 +191,6 @@
*/
public String getMethodName(int depth)
{
-
return methodNames[depth];
}
@@ -210,7 +203,6 @@
*/
public int[] getLineNumbers()
{
-
return lineNumbers;
}
@@ -226,7 +218,6 @@
*/
public int getLineNumber(int depth)
{
-
return lineNumbers[depth];
}
@@ -241,7 +232,6 @@
*/
public int hashCode()
{
-
if (numFrames == 0)
{
return 0;
@@ -266,7 +256,6 @@
*/
public boolean equals(Object o)
{
-
if (o == null)
{
return false;
@@ -319,7 +308,6 @@
*/
public ASN1Element encode()
{
-
ArrayList<ASN1Element> elements = new ArrayList<ASN1Element>(3*numFrames);
for (int i=0; i < numFrames; i++)
{
@@ -344,7 +332,6 @@
*/
public static ProfileStack decode(ASN1Element stackElement)
{
-
try
{
ArrayList<ASN1Element> elements =
--
Gitblit v1.10.0