Skip to content

Commit

Permalink
Merge pull request from Vyom-Yadav:CS-PMD-FIX-1
Browse files Browse the repository at this point in the history
[visualforce] Updated DataType.java pmd#3747

* pr-3747:
  [doc] Update release notes (pmd#3747)
  [core] Updated DataType.java
  • Loading branch information
adangel committed Jan 24, 2022
2 parents c0c2c76 + fb5e4dc commit fb913bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/pages/release_notes.md
Expand Up @@ -77,6 +77,7 @@ not support all features of the latest EcmaScript standard.
* [#3742](https://github.com/pmd/pmd/pull/3742): \[java] Fix #3701 - fix MissingStaticMethodInNonInstantiatableClass for method local classes - [Oleksii Dykov](https://github.com/dykov)
* [#3744](https://github.com/pmd/pmd/pull/3744): \[core] Updated SaxonXPathRuleQueryTest.java - [Vyom Yadav](https://github.com/Vyom-Yadav)
* [#3745](https://github.com/pmd/pmd/pull/3745): \[java] Fix #3712: InsufficientStringBufferDeclaration setLength false positive - [Daniel Gredler](https://github.com/gredler)
* [#3747](https://github.com/pmd/pmd/pull/3747): \[visualforce] Updated DataType.java - [Vyom Yadav](https://github.com/Vyom-Yadav)

{% endtocmaker %}

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 fb913bd

Please sign in to comment.