Skip to content

Commit

Permalink
cleanup from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Gross cogross committed Aug 6, 2024
1 parent 35f3524 commit 4112316
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ public UniqueFields(SortedSetMultimap<String,UniqueGranularity> fieldMap) {
* the field
* @param uniqueGranularity
* the granularity
* @return the field map
*/
public void put(String field, UniqueGranularity uniqueGranularity) {
fieldMap.put(field, uniqueGranularity);
Expand All @@ -176,7 +175,6 @@ public void put(String field, UniqueGranularity uniqueGranularity) {
*
* @param fieldMap
* the field map to add entries from
* @return the field map
*/
public void putAll(Multimap<String,UniqueGranularity> fieldMap) {
if (fieldMap != null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ public static boolean isDocumentRange(IndexInfo indexInfo) {
}

/**
* Determine if this is a shard range
*
* @param shard
* a shard string
Expand All @@ -97,8 +98,10 @@ public static boolean isShardRange(String shard) {
}

/**
* Create Document ranges
*
*
* @param tableName
* the name of the table
* @param queryNode
* a query node
* @param shard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@
import org.apache.commons.jexl3.parser.ASTUnaryPlusNode;
import org.apache.commons.jexl3.parser.ASTVar;
import org.apache.commons.jexl3.parser.ASTWhileStatement;
import org.apache.commons.jexl3.parser.JexlLexicalNode;
import org.apache.commons.jexl3.parser.JexlNode;
import org.apache.commons.jexl3.parser.JexlNodes;
import org.apache.commons.jexl3.parser.ParseException;
Expand Down Expand Up @@ -291,6 +290,8 @@ public static String formattedQueryString(JexlNode query) {
* a query node
* @param maxChildNodes
* maximum number of child nodes
* @param maxTermsToPrint
* maximum number of terms to print
* @return a formatted string
*/
public static String formattedQueryString(JexlNode query, int maxChildNodes, int maxTermsToPrint) {
Expand Down Expand Up @@ -325,6 +326,8 @@ public static List<String> formattedQueryStringList(JexlNode query) {
* a query node
* @param maxChildNodes
* maximum number of child nodes
* @param maxTermsToPrint
* maximum number of terms to print
* @return list of the formatted strings
*/
public static List<String> formattedQueryStringList(JexlNode query, int maxChildNodes, int maxTermsToPrint) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -651,9 +651,6 @@ public boolean isLongRunningQuery() {

/**
* If the configuration didn't exist, OR IT CHANGED, we need to create or update the transformers that have been added.
*
* @throws QueryException
* if error happens adding transformers
*/
private void addConfigBasedTransformers() {
if (getConfig() != null) {
Expand Down

0 comments on commit 4112316

Please sign in to comment.