You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by gg...@apache.org on 2023/06/24 03:48:57 UTC

[juneau] 21/29: [juneau-dto] Remove redundant modifiers

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git

commit 831ced8d17655d881ef0080f5667f3072f972774
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jun 23 23:36:20 2023 -0400

    [juneau-dto] Remove redundant modifiers
---
 .../src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
index e31ed1973..00d9c1e8f 100644
--- a/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
+++ b/juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/jsonschema/JsonType.java
@@ -54,7 +54,7 @@ public enum JsonType {
 
 	private final String value;	// The serialized format of the enum.
 
-	private JsonType(String value) {
+	JsonType(String value) {
 		this.value = value;
 	}