Skip to content

Commit 4f30d8f

Browse files
authored
Merge pull request #151 from TrianguloY/patch-1
Missing final for ExtendedScalars#UUID field
2 parents 9e28311 + e44219a commit 4f30d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/graphql/scalars/ExtendedScalars.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public class ExtendedScalars {
154154
* A UUID scalar that accepts a universally unique identifier and produces {@link
155155
* java.util.UUID} objects at runtime.
156156
*/
157-
public static GraphQLScalarType UUID = UUIDScalar.INSTANCE;
157+
public static final GraphQLScalarType UUID = UUIDScalar.INSTANCE;
158158

159159
/**
160160
* An `Int` scalar that MUST be greater than zero

0 commit comments

Comments
 (0)