From 88f16d892d54fd8c3e190cc1f6363638b11ae1a3 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Tue, 17 Feb 2015 10:26:23 +0000
Subject: [PATCH] AutoRefactor: remove fields default values
---
opendj-server-legacy/src/main/java/org/opends/server/tools/LDAPSearchOptions.java | 13 +++++--------
1 files changed, 5 insertions(+), 8 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/server/tools/LDAPSearchOptions.java b/opendj-server-legacy/src/main/java/org/opends/server/tools/LDAPSearchOptions.java
index a88e133..0bd72d0 100644
--- a/opendj-server-legacy/src/main/java/org/opends/server/tools/LDAPSearchOptions.java
+++ b/opendj-server-legacy/src/main/java/org/opends/server/tools/LDAPSearchOptions.java
@@ -22,7 +22,7 @@
*
*
* Copyright 2006-2008 Sun Microsystems, Inc.
- * Portions Copyright 2014 ForgeRock AS
+ * Portions Copyright 2014-2015 ForgeRock AS
*/
package org.opends.server.tools;
@@ -46,14 +46,13 @@
private DereferenceAliasesPolicy dereferencePolicy = NEVER;
private SearchScope searchScope = WHOLE_SUBTREE;
- private int sizeLimit = 0;
- private int timeLimit = 0;
- private boolean typesOnly = false;
- private boolean countMatchingEntries = false;
+ private int sizeLimit;
+ private int timeLimit;
+ private boolean typesOnly;
+ private boolean countMatchingEntries;
/**
* Creates the options instance.
- *
*/
public LDAPSearchOptions()
{
@@ -63,9 +62,7 @@
* Set the timeLimit for the operation.
*
* @param timeLimit The time limit for the search.
- *
*/
-
public void setTimeLimit(int timeLimit)
{
this.timeLimit = timeLimit;
--
Gitblit v1.10.0