From 3e3246e42af6979556dec66ec10ad3d3e009217c 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.
---
opendj-sdk/opends/src/server/org/opends/server/util/StaticUtils.java | 21 ---------------------
1 files changed, 0 insertions(+), 21 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/util/StaticUtils.java b/opendj-sdk/opends/src/server/org/opends/server/util/StaticUtils.java
index e6f5d32..e81ee1d 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/util/StaticUtils.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/util/StaticUtils.java
@@ -2016,7 +2016,6 @@
*/
public static boolean needsBase64Encoding(byte[] valueBytes)
{
-
int length;
if ((valueBytes == null) || ((length = valueBytes.length) == 0))
{
@@ -2079,7 +2078,6 @@
*/
public static boolean needsBase64Encoding(String valueString)
{
-
int length;
if ((valueString == null) || ((length = valueString.length()) == 0))
{
@@ -2134,7 +2132,6 @@
*/
public static boolean mayUseExec()
{
-
String s = System.getProperty(PROPERTY_DISABLE_EXEC);
if (s == null)
{
@@ -2178,8 +2175,6 @@
Map<String,String> environment, List<String> output)
throws IOException, SecurityException
{
-
-
// See whether we'll allow the use of exec on this system. If not, then
// throw an exception.
if (! mayUseExec())
@@ -2333,8 +2328,6 @@
int endPos,
StringBuilder invalidReason)
{
-
-
if ((element == null) || (startPos >= endPos))
{
int msgID = MSGID_SCHEMANAME_EMPTY_VALUE;
@@ -2471,7 +2464,6 @@
*/
public static String toLowerCase(String s)
{
-
if (s == null)
{
return null;
@@ -2498,7 +2490,6 @@
*/
public static void toLowerCase(String s, StringBuilder buffer)
{
-
if (s == null)
{
return;
@@ -2620,7 +2611,6 @@
*/
public static void toLowerCase(byte[] b, StringBuilder buffer, boolean trim)
{
-
if (b == null)
{
return;
@@ -2775,7 +2765,6 @@
*/
public static String toUpperCase(String s)
{
-
if (s == null)
{
return null;
@@ -2802,7 +2791,6 @@
*/
public static void toUpperCase(String s, StringBuilder buffer)
{
-
if (s == null)
{
return;
@@ -2924,7 +2912,6 @@
*/
public static void toUpperCase(byte[] b, StringBuilder buffer, boolean trim)
{
-
if (b == null)
{
return;
@@ -3095,7 +3082,6 @@
public static StringBuilder toRFC3641StringValue(StringBuilder builder,
String string)
{
-
// Initial double-quote.
builder.append('"');
@@ -3128,7 +3114,6 @@
*/
public static String[] listToArray(List<String> stringList)
{
-
if (stringList == null)
{
return null;
@@ -3150,7 +3135,6 @@
*/
public static ArrayList<String> arrayToList(String[] stringArray)
{
-
if (stringArray == null)
{
return null;
@@ -3179,7 +3163,6 @@
*/
public static boolean recursiveDelete(File file)
{
-
boolean successful = true;
if (file.isDirectory())
{
@@ -3277,7 +3260,6 @@
*/
public static boolean isRelativePath(String path)
{
-
File f = new File(path);
return (! f.isAbsolute());
}
@@ -3296,7 +3278,6 @@
*/
public static File getFileForPath(String path)
{
-
File f = new File (path);
if (f.isAbsolute())
@@ -3337,8 +3318,6 @@
*/
public static Entry createEntry(DN dn)
{
-
-
// If the provided DN was null or empty, then return null because we don't
// support it.
if ((dn == null) || dn.isNullDN())
--
Gitblit v1.10.0