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/schema/UTCTimeSyntax.java | 14 --------------
1 files changed, 0 insertions(+), 14 deletions(-)
diff --git a/opends/src/server/org/opends/server/schema/UTCTimeSyntax.java b/opends/src/server/org/opends/server/schema/UTCTimeSyntax.java
index d2aa8b1..95e38ac 100644
--- a/opends/src/server/org/opends/server/schema/UTCTimeSyntax.java
+++ b/opends/src/server/org/opends/server/schema/UTCTimeSyntax.java
@@ -143,7 +143,6 @@
public void initializeSyntax(ConfigEntry configEntry)
throws ConfigException
{
-
defaultEqualityMatchingRule =
DirectoryServer.getEqualityMatchingRule(EMR_GENERALIZED_TIME_OID);
if (defaultEqualityMatchingRule == null)
@@ -181,7 +180,6 @@
*/
public String getSyntaxName()
{
-
return SYNTAX_UTC_TIME_NAME;
}
@@ -194,7 +192,6 @@
*/
public String getOID()
{
-
return SYNTAX_UTC_TIME_OID;
}
@@ -207,7 +204,6 @@
*/
public String getDescription()
{
-
return SYNTAX_UTC_TIME_DESCRIPTION;
}
@@ -223,7 +219,6 @@
*/
public EqualityMatchingRule getEqualityMatchingRule()
{
-
return defaultEqualityMatchingRule;
}
@@ -239,7 +234,6 @@
*/
public OrderingMatchingRule getOrderingMatchingRule()
{
-
return defaultOrderingMatchingRule;
}
@@ -255,7 +249,6 @@
*/
public SubstringMatchingRule getSubstringMatchingRule()
{
-
return defaultSubstringMatchingRule;
}
@@ -271,7 +264,6 @@
*/
public ApproximateMatchingRule getApproximateMatchingRule()
{
-
// Approximate matching will not be allowed by default.
return null;
}
@@ -293,8 +285,6 @@
public boolean valueIsAcceptable(ByteString value,
StringBuilder invalidReason)
{
-
-
// Get the value as a string and verify that it is at least long enough for
// "YYYYMMDDhhmmZ", which is the shortest allowed value.
String valueString = value.stringValue().toUpperCase();
@@ -755,8 +745,6 @@
private boolean hasValidOffset(String value, int startPos,
StringBuilder invalidReason)
{
-
-
int offsetLength = value.length() - startPos;
if (offsetLength < 2)
{
@@ -882,7 +870,6 @@
*/
public static AttributeValue createUTCTimeValue(Date d)
{
-
String valueString;
dateFormatLock.lock();
@@ -928,7 +915,6 @@
public static Date decodeUTCTimeValue(ByteString normalizedValue)
throws DirectoryException
{
-
String valueString = normalizedValue.stringValue();
try
{
--
Gitblit v1.10.0