Skip to content

Commit

Permalink
GitHub Actions: Fix Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Nov 25, 2024
1 parent dd97c1e commit 172aba6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package datawave.query.config;

import datawave.query.iterator.ivarator.IvaratorCacheDirConfig;

import java.util.Collections;
import java.util.List;

import datawave.query.iterator.ivarator.IvaratorCacheDirConfig;

public class IvaratorConfig {

private List<IvaratorCacheDirConfig> ivaratorCacheDirConfigs = Collections.emptyList();
Expand All @@ -21,9 +21,9 @@ public class IvaratorConfig {
private long maxIvaratorSourceWait = 1000L * 60 * 30;
private long maxIvaratorResults = -1;

public IvaratorConfig(){};
public IvaratorConfig() {};

public IvaratorConfig(IvaratorConfig other){
public IvaratorConfig(IvaratorConfig other) {
copyFrom(other);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

class IvaratorConfigTest {

}
}

0 comments on commit 172aba6

Please sign in to comment.