Skip to content

Commit

Permalink
[core] Updated DataType.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Vyom-Yadav committed Jan 21, 2022
1 parent c0c2c76 commit 0f01d46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public static DataType fromBasicType(BasicType value) {
this(requiresEscaping, null);
}

DataType(boolean requiresEscaping, BasicType...basicTypes) {
DataType(boolean requiresEscaping, BasicType... basicTypes) {
this.requiresEscaping = requiresEscaping;
this.basicTypes = new HashSet<>();
if (basicTypes != null) {
Expand Down

0 comments on commit 0f01d46

Please sign in to comment.