Skip to content

Commit 1a40c97

Browse files
authored
chore: fix issues with compilation on later JDKs (#178)
chore: fix compile/lint issues on 8+ Signed-off-by: Todd Baert <toddbaert@gmail.com> Signed-off-by: Todd Baert <toddbaert@gmail.com>
1 parent 1b59dc4 commit 1a40c97

29 files changed

+94
-24
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class MyClass {
5656
For complete documentation, visit: https://docs.openfeature.dev/docs/category/concepts
5757

5858
## Requirements
59-
- Java 8+
59+
- Java 8+ (compiler target is 1.8)
6060

6161
## Installation
6262

checkstyle-suppressions.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0"?>
2+
3+
<!DOCTYPE suppressions PUBLIC "-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN" "https://checkstyle.org/dtds/suppressions_1_2.dtd">
4+
5+
<suppressions>
6+
<!-- checkstyle suppressions can go here -->
7+
</suppressions>

checkstyle.xml

+24-8
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<property name="optional" value="true"/>
3535
</module>
3636

37+
3738
<!-- Checks for whitespace -->
3839
<!-- See http://checkstyle.org/config_whitespace.html -->
3940
<module name="FileTabCharacter">
@@ -46,7 +47,23 @@
4647
<property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
4748
</module>
4849

50+
<module name="SuppressWarningsFilter" />
51+
4952
<module name="TreeWalker">
53+
<!-- needed for SuppressWarningsFilter -->
54+
<module name="SuppressWarningsHolder" />
55+
56+
<module name="SuppressWarnings">
57+
<property name="id" value="checkstyle:suppresswarnings"/>
58+
</module>
59+
60+
<!-- https://checkstyle.org/config_filters.html#SuppressionXpathFilter -->
61+
<module name="SuppressionXpathFilter">
62+
<property name="file" value="${org.checkstyle.google.suppressionxpathfilter.config}"
63+
default="checkstyle-xpath-suppressions.xml" />
64+
<property name="optional" value="true"/>
65+
</module>
66+
5067
<module name="OuterTypeFilename"/>
5168
<module name="IllegalTokenText">
5269
<property name="tokens" value="STRING_LITERAL, CHAR_LITERAL"/>
@@ -223,7 +240,7 @@
223240
<property name="arrayInitIndent" value="4"/>
224241
</module>
225242
<module name="AbbreviationAsWordInName">
226-
<property name="ignoreFinal" value="false"/>
243+
<property name="ignoreFinal" value="true"/>
227244
<property name="allowedAbbreviations" value="API" />
228245
<property name="allowedAbbreviationLength" value="1"/>
229246
<property name="tokens"
@@ -292,6 +309,12 @@
292309
<property name="allowedAnnotations" value="Override, Test"/>
293310
<property name="tokens" value="METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF"/>
294311
</module>
312+
<module name="MissingJavadocType">
313+
<property name="scope" value="protected"/>
314+
<property name="tokens" value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF,
315+
RECORD_DEF, ANNOTATION_DEF"/>
316+
<property name="excludeScope" value="nothing"/>
317+
</module>
295318
<module name="MethodName">
296319
<property name="format" value="^[a-z][a-z0-9][a-zA-Z0-9_]*$"/>
297320
<message key="name.invalidPattern"
@@ -306,12 +329,5 @@
306329
<module name="CommentsIndentation">
307330
<property name="tokens" value="SINGLE_LINE_COMMENT, BLOCK_COMMENT_BEGIN"/>
308331
</module>
309-
<!-- https://checkstyle.org/config_filters.html#SuppressionXpathFilter -->
310-
<module name="SuppressionXpathFilter">
311-
<property name="file" value="${org.checkstyle.google.suppressionxpathfilter.config}"
312-
default="checkstyle-xpath-suppressions.xml" />
313-
<property name="optional" value="true"/>
314-
</module>
315332
</module>
316333
</module>
317-

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@
369369
<version>3.4.1</version>
370370
<configuration>
371371
<failOnWarnings>true</failOnWarnings>
372+
<doclint>all,-missing</doclint> <!-- ignore missing javadoc, these are enforced with more customizability in the checkstyle plugin -->
372373
</configuration>
373374
<executions>
374375
<execution>

spotbugs-exclusions.xml

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@
2727
<Bug pattern="EI_EXPOSE_REP2"/>
2828
</And>
2929

30-
31-
32-
3330
<!-- Test class that should be excluded -->
3431
<Match>
3532
<Class name="dev.openfeature.sdk.DoSomethingProvider"/>

src/main/java/dev/openfeature/sdk/BooleanHook.java

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
package dev.openfeature.sdk;
22

3+
/**
4+
* {@inheritDoc}
5+
*/
36
public interface BooleanHook extends Hook<Boolean> {
47

58
@Override

src/main/java/dev/openfeature/sdk/DoubleHook.java

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
package dev.openfeature.sdk;
22

3+
/**
4+
* {@inheritDoc}
5+
*/
36
public interface DoubleHook extends Hook<Double> {
47

58
@Override
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package dev.openfeature.sdk;
22

3+
@SuppressWarnings("checkstyle:MissingJavadocType")
34
public enum ErrorCode {
45
PROVIDER_NOT_READY, FLAG_NOT_FOUND, PARSE_ERROR, TYPE_MISMATCH, TARGETING_KEY_MISSING, INVALID_CONTEXT, GENERAL
56
}

src/main/java/dev/openfeature/sdk/FlagEvaluationDetails.java

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public class FlagEvaluationDetails<T> implements BaseEvaluation<T> {
2020

2121
/**
2222
* Generate detail payload from the provider response.
23+
*
2324
* @param providerEval provider response
2425
* @param flagKey key for the flag being evaluated
2526
* @param <T> type of flag being returned

src/main/java/dev/openfeature/sdk/FlagEvaluationOptions.java

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import lombok.Builder;
88
import lombok.Singular;
99

10+
@SuppressWarnings("checkstyle:MissingJavadocType")
1011
@lombok.Value
1112
@Builder
1213
public class FlagEvaluationOptions {
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package dev.openfeature.sdk;
22

3+
@SuppressWarnings("checkstyle:MissingJavadocType")
34
public enum FlagValueType {
45
STRING, INTEGER, DOUBLE, OBJECT, BOOLEAN;
56
}

src/main/java/dev/openfeature/sdk/HookSupport.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
package dev.openfeature.sdk;
22

3-
import java.util.*;
3+
import java.util.List;
4+
import java.util.Map;
5+
import java.util.Objects;
6+
import java.util.Optional;
47
import java.util.function.Consumer;
58
import java.util.stream.Collectors;
69
import java.util.stream.IntStream;

src/main/java/dev/openfeature/sdk/IntegerHook.java

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
package dev.openfeature.sdk;
22

3+
/**
4+
* {@inheritDoc}
5+
*/
36
public interface IntegerHook extends Hook<Integer> {
47

58
@Override

src/main/java/dev/openfeature/sdk/MutableStructure.java

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
package dev.openfeature.sdk;
22

33
import java.time.Instant;
4-
import java.util.*;
4+
import java.util.HashMap;
5+
import java.util.List;
6+
import java.util.Map;
7+
import java.util.Set;
58
import java.util.stream.Collectors;
69

710
import dev.openfeature.sdk.exceptions.ValueNotConvertableError;
@@ -16,7 +19,7 @@
1619
*/
1720
@ToString
1821
@EqualsAndHashCode
19-
@SuppressWarnings("PMD.BeanMembersShouldSerialize")
22+
@SuppressWarnings({"PMD.BeanMembersShouldSerialize", "checkstyle:MissingJavadocType"})
2023
public class MutableStructure implements Structure {
2124

2225
protected final Map<String, Value> attributes;
@@ -66,13 +69,6 @@ public MutableStructure add(String key, Double value) {
6669
return this;
6770
}
6871

69-
/**
70-
* Add date-time relevant key.
71-
*
72-
* @param key feature key
73-
* @param value date-time value
74-
* @return Structure
75-
*/
7672
public MutableStructure add(String key, Instant value) {
7773
attributes.put(key, new Value(value));
7874
return this;
@@ -116,6 +112,7 @@ public Map<String, Object> asObjectMap() {
116112

117113
/**
118114
* convertValue is converting the object type Value in a primitive type.
115+
*
119116
* @param value - Value object to convert
120117
* @return an Object containing the primitive type.
121118
*/

src/main/java/dev/openfeature/sdk/OpenFeatureClient.java

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
import lombok.Getter;
1515
import lombok.extern.slf4j.Slf4j;
1616

17+
/**
18+
* {@inheritDoc}
19+
*/
1720
@Slf4j
1821
@SuppressWarnings({ "PMD.DataflowAnomalyAnalysis", "PMD.BeanMembersShouldSerialize", "unchecked", "rawtypes" })
1922
public class OpenFeatureClient implements Client {

src/main/java/dev/openfeature/sdk/ProviderEvaluation.java

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
import javax.annotation.Nullable;
77

8+
@SuppressWarnings("checkstyle:MissingJavadocType")
89
@Data @Builder
910
public class ProviderEvaluation<T> implements BaseEvaluation<T> {
1011
T value;
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
package dev.openfeature.sdk;
22

3+
/**
4+
* Predefined resolution reasons.
5+
*/
36
public enum Reason {
47
DISABLED, SPLIT, TARGETING_MATCH, DEFAULT, UNKNOWN, ERROR
58
}

src/main/java/dev/openfeature/sdk/StringHook.java

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
package dev.openfeature.sdk;
22

3+
/**
4+
* {@inheritDoc}
5+
*/
36
public interface StringHook extends Hook<String> {
47

58
@Override

src/main/java/dev/openfeature/sdk/Value.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,14 @@
1313
*/
1414
@ToString
1515
@EqualsAndHashCode
16-
@SuppressWarnings("PMD.BeanMembersShouldSerialize")
16+
@SuppressWarnings({"PMD.BeanMembersShouldSerialize", "checkstyle:MissingJavadocType"})
1717
public class Value {
1818

1919
private final Object innerObject;
2020

21+
/**
22+
* Construct a new null Value.
23+
*/
2124
public Value() {
2225
this.innerObject = null;
2326
}

src/main/java/dev/openfeature/sdk/exceptions/FlagNotFoundError.java

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import lombok.Getter;
55
import lombok.experimental.StandardException;
66

7+
@SuppressWarnings("checkstyle:MissingJavadocType")
78
@StandardException
89
public class FlagNotFoundError extends OpenFeatureError {
910
private static final long serialVersionUID = 1L;

src/main/java/dev/openfeature/sdk/exceptions/GeneralError.java

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import lombok.Getter;
55
import lombok.experimental.StandardException;
66

7+
@SuppressWarnings("checkstyle:MissingJavadocType")
78
@StandardException
89
public class GeneralError extends OpenFeatureError {
910
private static final long serialVersionUID = 1L;

src/main/java/dev/openfeature/sdk/exceptions/InvalidContextError.java

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import lombok.Getter;
55
import lombok.experimental.StandardException;
66

7+
/**
8+
* The evaluation context does not meet provider requirements.
9+
*/
710
@StandardException
811
public class InvalidContextError extends OpenFeatureError {
912
private static final long serialVersionUID = 1L;

src/main/java/dev/openfeature/sdk/exceptions/OpenFeatureError.java

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import dev.openfeature.sdk.ErrorCode;
44
import lombok.experimental.StandardException;
55

6+
@SuppressWarnings("checkstyle:MissingJavadocType")
67
@StandardException
78
public abstract class OpenFeatureError extends RuntimeException {
89
private static final long serialVersionUID = 1L;

src/main/java/dev/openfeature/sdk/exceptions/ParseError.java

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import lombok.Getter;
55
import lombok.experimental.StandardException;
66

7+
/**
8+
* An error was encountered parsing data, such as a flag configuration.
9+
*/
710
@StandardException
811
public class ParseError extends OpenFeatureError {
912
private static final long serialVersionUID = 1L;

src/main/java/dev/openfeature/sdk/exceptions/TargetingKeyMissingError.java

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import lombok.Getter;
55
import lombok.experimental.StandardException;
66

7+
/**
8+
* The provider requires a targeting key and one was not provided in the evaluation context.
9+
*/
710
@StandardException
811
public class TargetingKeyMissingError extends OpenFeatureError {
912
private static final long serialVersionUID = 1L;

src/main/java/dev/openfeature/sdk/exceptions/TypeMismatchError.java

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import lombok.Getter;
55
import lombok.experimental.StandardException;
66

7+
/**
8+
* The type of the flag value does not match the expected type.
9+
*/
710
@StandardException
811
public class TypeMismatchError extends OpenFeatureError {
912
private static final long serialVersionUID = 1L;

src/main/java/dev/openfeature/sdk/exceptions/ValueNotConvertableError.java

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import lombok.Getter;
55
import lombok.experimental.StandardException;
66

7+
/**
8+
* The value can not be converted to a {@link dev.openfeature.sdk.Value}.
9+
*/
710
@StandardException
811
public class ValueNotConvertableError extends OpenFeatureError {
912
private static final long serialVersionUID = 1L;

src/main/java/dev/openfeature/sdk/internal/AutoCloseableLock.java

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package dev.openfeature.sdk.internal;
22

3+
@SuppressWarnings("checkstyle:MissingJavadocType")
34
public interface AutoCloseableLock extends AutoCloseable {
45

56
/**

src/main/java/dev/openfeature/sdk/internal/ObjectUtils.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
package dev.openfeature.sdk.internal;
22

3-
import java.util.*;
3+
import java.util.Arrays;
4+
import java.util.Collection;
5+
import java.util.List;
6+
import java.util.Map;
47
import java.util.function.Supplier;
58
import java.util.stream.Collectors;
69

710
import lombok.experimental.UtilityClass;
811

12+
@SuppressWarnings("checkstyle:MissingJavadocType")
913
@UtilityClass
1014
public class ObjectUtils {
1115

0 commit comments

Comments
 (0)