Skip to content

Commit 747dc51

Browse files
committed
whitespace only - fix tabs to spaces
(cherry picked from commit aec3a53)
1 parent 3b3e6c8 commit 747dc51

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/main/java/com/marklogic/client/query/SearchResults.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public interface SearchResults {
113113
* (if requested).
114114
* @return The constraint names.
115115
*/
116-
public String[] getConstraintNames();
116+
public String[] getConstraintNames();
117117

118118
/**
119119
* Returns the named constraint used in the search
@@ -122,34 +122,34 @@ public interface SearchResults {
122122
* @param handle An XML handle for reading the constraint.
123123
* @return The handle on the constraint.
124124
*/
125-
public <T extends XMLReadHandle> T getConstraint(String name, T handle);
125+
public <T extends XMLReadHandle> T getConstraint(String name, T handle);
126126

127127
/**
128128
* Returns an iterator over the constraints used in the search
129129
* (if requested).
130130
* @param handle An XML handle for reading the constraints.
131131
* @return An iterator that populates the handle with each constraint.
132132
*/
133-
public <T extends XMLReadHandle> Iterator<T> getConstraintIterator(T handle);
133+
public <T extends XMLReadHandle> Iterator<T> getConstraintIterator(T handle);
134134

135135
/**
136136
* Returns the plan for the search (if requested).
137137
* @param handle An XML handle for reading the plan.
138138
* @return The handle on the plan.
139139
*/
140-
public <T extends XMLReadHandle> T getPlan(T handle);
140+
public <T extends XMLReadHandle> T getPlan(T handle);
141141

142-
/**
143-
* Returns the string query input (if provided and requested).
144-
* @return The string queries.
145-
*/
142+
/**
143+
* Returns the string query input (if provided and requested).
144+
* @return The string queries.
145+
*/
146146
public String[] getStringQueries();
147147

148-
/**
149-
* Returns the cts:query used in the search (if requested).
148+
/**
149+
* Returns the cts:query used in the search (if requested).
150150
* @param handle An XML handle for reading the query.
151151
* @return The handle on the query.
152-
*/
152+
*/
153153
public <T extends XMLReadHandle> T getQuery(T handle);
154154
}
155155

0 commit comments

Comments
 (0)