Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
THERE ARE NO CODE CHANGES! This is a cleanup of unnecessary Suppress
Warnings across the whole library. The vast majority of these warnings were unnecessary SuppressWarnings("javadoc") which were placed at the top of every test file. We don't require javadocs of our test files and they should never be published. This kind of suppression should be done at a global level and not in each file, which just added clutter to the code.
- Loading branch information
Showing
170 changed files
with
20 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -42,7 +42,6 @@ | ||
* @author Lee Rhodes | ||
* @author Kevin Lang | ||
*/ | ||
@SuppressWarnings("javadoc") | ||
public class CompressionCharacterization { | ||
private String hfmt; | ||
private String dfmt; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -37,7 +37,6 @@ | ||
* @author Lee Rhodes | ||
* @author Kevin Lang | ||
*/ | ||
@SuppressWarnings("javadoc") | ||
public class MergingValidation { | ||
private String hfmt; | ||
private String dfmt; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -37,7 +37,6 @@ | ||
* @author Lee Rhodes | ||
* @author Kevin Lang | ||
*/ | ||
@SuppressWarnings("javadoc") | ||
public class QuickMergingValidation { | ||
private String hfmt; | ||
private String dfmt; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -35,7 +35,6 @@ | ||
* @author Lee Rhodes | ||
* @author Kevin Lang | ||
*/ | ||
@SuppressWarnings("javadoc") | ||
public class StreamingValidation { | ||
private String hfmt; | ||
private String dfmt; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -51,7 +51,6 @@ | ||
* @author Lee Rhodes | ||
*/ | ||
@SuppressWarnings("javadoc") | ||
public enum TgtHllType { HLL_4, HLL_6, HLL_8; | ||
|
||
private static final TgtHllType values[] = values(); | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -532,7 +532,6 @@ public boolean isEmpty() { | ||
/** | ||
* @return true if this sketch is off-heap | ||
*/ | ||
@SuppressWarnings("static-method") | ||
public boolean isDirect() { | ||
return false; | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -31,7 +31,6 @@ public final class SerializerDeserializer { | ||
/** | ||
* Defines the sketch classes that this SerializerDeserializer can handle. | ||
*/ | ||