Skip to content

Commit 3625d2b

Browse files
authored
Update to javaparser parent 3.25.10
2 parents a4abff1 + 67e60ab commit 3625d2b

File tree

1,278 files changed

+12619
-1839
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,278 files changed

+12619
-1839
lines changed

.github/workflows/create_github_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout code
16-
uses: actions/[email protected].1
16+
uses: actions/[email protected].2
1717

1818
- name: Create Release
1919
id: create_release

.github/workflows/maven_tests.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ jobs:
3434
os: [ ubuntu-latest, macos-latest, windows-latest ]
3535
## Different JDK versions have different implementations etc. -- test on all combinations (ideally 8 to latest).
3636
### exclude pre-8 (min development version jdk8)
37-
### exclude post-12 (changes to jdk causes reflection tests to fail due to added methods #1701 )
38-
# typetools: Exclude 10 because of crashes in the compiler
39-
jdk: [ 8,9,11,12,13,14,15,16 ]
37+
# typetools: Exclude 10 because of crashes in the compiler, exclude others because they aren't found
38+
jdk: [ 8,11,13,15,16,17 ]
4039
env:
4140
OS: ${{ matrix.os }}
4241
JDK: ${{ matrix.jdk }}
@@ -46,13 +45,13 @@ jobs:
4645
steps:
4746
## Checkout the current version of the code from the repo.
4847
- name: Checkout latest code
49-
uses: actions/[email protected].1
48+
uses: actions/[email protected].2
5049
with:
5150
fetch-depth: "0"
5251

5352
## Setup the specified version of Java (includes maven/gradle).
5453
- name: Set up JDK ${{ matrix.jdk }}
55-
uses: actions/setup-java@v3
54+
uses: actions/setup-java@v4
5655
with:
5756
distribution: 'zulu' # v2 requires explicitly stating the distribution - `zulu` and `adopt` supported at time of writing
5857
java-version: ${{ matrix.jdk }} # Use matrix to select which JDK level to use
@@ -65,7 +64,7 @@ jobs:
6564
## Use a cache to reduce the build/test times (avoids having to download dependencies on EVERY run).
6665
### https://help.github.com/en/actions/language-and-framework-guides/building-and-testing-java-with-maven#caching-dependencies
6766
- name: Cache Maven packages
68-
uses: actions/cache@v3
67+
uses: actions/cache@v4
6968
with:
7069
path: ~/.m2
7170
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -85,7 +84,7 @@ jobs:
8584

8685

8786
- name: CodeCov - JavaParser Core
88-
uses: codecov/codecov-action@v3.1.4
87+
uses: codecov/codecov-action@v4.2.0
8988
timeout-minutes: 10
9089
with:
9190
files: javaparser-core-testing/target/site/jacoco/jacoco.xml,javaparser-core-testing-bdd/target/site/jacoco/jacoco.xml
@@ -95,7 +94,7 @@ jobs:
9594
env_vars: OS,JDK
9695

9796
- name: CodeCov - JavaParser Symbol Solver
98-
uses: codecov/codecov-action@v3.1.4
97+
uses: codecov/codecov-action@v4.2.0
9998
timeout-minutes: 10
10099
with:
101100
file: javaparser-symbol-solver-testing/target/site/jacoco/jacoco.xml
@@ -110,11 +109,11 @@ jobs:
110109
runs-on: ubuntu-latest
111110
steps:
112111
- name: Checkout latest code
113-
uses: actions/[email protected].1
112+
uses: actions/[email protected].2
114113
with:
115114
fetch-depth: "0"
116115
- name: Set up JDK 11
117-
uses: actions/setup-java@v3
116+
uses: actions/setup-java@v4
118117
with:
119118
java-version: '11'
120119
distribution: 'zulu'

.github/workflows/prepare_release_changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515

1616
# Check out current repository
1717
- name: Fetch Sources
18-
uses: actions/[email protected].1
18+
uses: actions/[email protected].2
1919

2020
# Setup Java 11 environment for the next steps
2121
- name: Setup Java
22-
uses: actions/setup-java@v3
22+
uses: actions/setup-java@v4
2323
with:
2424
distribution: zulu
2525
java-version: 11

.mvn/wrapper/maven-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
17+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
1818
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar

changelog.md

Lines changed: 166 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
Next Release (Version 3.25.7-snapshot)
2+
Next Release (Version 3.25.11-snapshot)
33
--------------------------------------
4-
[issues resolved](https://github.com/javaparser/javaparser/milestone/203?closed=1)
4+
[issues resolved](https://github.com/javaparser/javaparser/milestone/207?closed=1)
55

66
### Added
77
### Changed
@@ -10,6 +10,170 @@ Next Release (Version 3.25.7-snapshot)
1010
### Fixed
1111
### Security
1212

13+
14+
Version 3.25.10
15+
---------------
16+
[issues resolved](https://github.com/javaparser/javaparser/milestone/206?closed=1)
17+
18+
### Fixed
19+
20+
* Fix issue 4345 Strange error when trying to find erasure of generic t… (PR [#4362](https://github.com/javaparser/javaparser/pull/4362) by [@jlerbsc](https://github.com/jlerbsc))
21+
* fix: issue 4358 prevent infinite cycles with static imports (PR [#4359](https://github.com/javaparser/javaparser/pull/4359) by [@kdunee](https://github.com/kdunee))
22+
* Refactor `ResolvedReferenceType#equals` (PR [#4351](https://github.com/javaparser/javaparser/pull/4351) by [@freya022](https://github.com/freya022))
23+
* fix: issue 4331 Cannot be 'abstract' and also 'private'. for a private method in an interface (PR [#4332](https://github.com/javaparser/javaparser/pull/4332) by [@jlerbsc](https://github.com/jlerbsc))
24+
25+
### Developer Changes
26+
27+
* chore(deps): bump actions/checkout from 4.1.1 to 4.1.2 (PR [#4341](https://github.com/javaparser/javaparser/pull/4341) by [@dependabot[bot]](https://github.com/apps/dependabot))
28+
29+
### :heart: Contributors
30+
31+
Thank You to all contributors who worked on this release!
32+
33+
* [@kdunee](https://github.com/kdunee)
34+
* [@freya022](https://github.com/freya022)
35+
* [@jlerbsc](https://github.com/jlerbsc)
36+
37+
38+
39+
Version 3.25.9
40+
--------------
41+
[issues resolved](https://github.com/javaparser/javaparser/milestone/205?closed=1)
42+
43+
### Added
44+
45+
* Fix: issue #3878 resolve MethodReference in ObjectCreationExpr (PR [#4296](https://github.com/javaparser/javaparser/pull/4296) by [@fishautumn](https://github.com/fishautumn))
46+
47+
### Changed
48+
49+
* Switch order of literals to prevent NullPointerException (PR [#4322](https://github.com/javaparser/javaparser/pull/4322) by [@citizenjosh](https://github.com/citizenjosh))
50+
* Minor refactoring to use the existing getArgumentPosition method (PR [#4306](https://github.com/javaparser/javaparser/pull/4306) by [@jlerbsc](https://github.com/jlerbsc))
51+
* Optimize find ancestor (PR [#4294](https://github.com/javaparser/javaparser/pull/4294) by [@magicwerk](https://github.com/magicwerk))
52+
* refac: Removes useless ExpressionHelper utility class and replaces some explicit casts by using the javaparser API (PR [#4291](https://github.com/javaparser/javaparser/pull/4291) by [@jlerbsc](https://github.com/jlerbsc))
53+
54+
### Fixed
55+
56+
* fix: Dead stores should be removed (sonar rule) (PR [#4329](https://github.com/javaparser/javaparser/pull/4329) by [@jlerbsc](https://github.com/jlerbsc))
57+
* fix: Replace this if-then-else statement by a single return statement (sonar rule) (PR [#4328](https://github.com/javaparser/javaparser/pull/4328) by [@jlerbsc](https://github.com/jlerbsc))
58+
* fix: issue 2043 getAccessSpecifier should return public for interface methods (PR [#4317](https://github.com/javaparser/javaparser/pull/4317) by [@jlerbsc](https://github.com/jlerbsc))
59+
* Further improve correction of whitespace during difference application (PR [#4316](https://github.com/javaparser/javaparser/pull/4316) by [@jlerbsc](https://github.com/jlerbsc))
60+
* Fix: issue #3946 Symbol solver is unable to resolve inherited inner classes (PR [#4314](https://github.com/javaparser/javaparser/pull/4314) by [@jlerbsc](https://github.com/jlerbsc))
61+
* fix: issue 4311 IllegalStateException when removing all comments with LexicalPreservingPrinter (PR [#4313](https://github.com/javaparser/javaparser/pull/4313) by [@jlerbsc](https://github.com/jlerbsc))
62+
* Fix: issue 3939 SymbolResolver.calculateType(Expression) may fails on first try, then succeed on later tries (PR [#4290](https://github.com/javaparser/javaparser/pull/4290) by [@jlerbsc](https://github.com/jlerbsc))
63+
* Adds unit test for issue 4284 "ClassCastException when resolving MethodCallExpr inside an enhanced switch statement" (PR [#4285](https://github.com/javaparser/javaparser/pull/4285) by [@jlerbsc](https://github.com/jlerbsc))
64+
* Change `SwitchStmt` to `SwitchNode` in `SwitchEntryContext` to avoid `ClassCastException` (PR [#4283](https://github.com/javaparser/javaparser/pull/4283) by [@PalashSharma20](https://github.com/PalashSharma20))
65+
66+
### Developer Changes
67+
68+
* chore(deps): bump org.codehaus.mojo:exec-maven-plugin from 3.1.1 to 3.2.0 (PR [#4323](https://github.com/javaparser/javaparser/pull/4323) by [@dependabot[bot]](https://github.com/apps/dependabot))
69+
* chore(deps): update junit5 monorepo to v5.10.2 (PR [#4307](https://github.com/javaparser/javaparser/pull/4307) by [@renovate[bot]](https://github.com/apps/renovate))
70+
* chore(deps): update codecov/codecov-action action to v4 (PR [#4304](https://github.com/javaparser/javaparser/pull/4304) by [@renovate[bot]](https://github.com/apps/renovate))
71+
* chore(deps): update actions/cache action to v4 (PR [#4293](https://github.com/javaparser/javaparser/pull/4293) by [@renovate[bot]](https://github.com/apps/renovate))
72+
73+
### :heart: Contributors
74+
75+
Thank You to all contributors who worked on this release!
76+
77+
* [@citizenjosh](https://github.com/citizenjosh)
78+
* [@magicwerk](https://github.com/magicwerk)
79+
* [@PalashSharma20](https://github.com/PalashSharma20)
80+
* [@jlerbsc](https://github.com/jlerbsc)
81+
* [@fishautumn](https://github.com/fishautumn)
82+
83+
84+
Version 3.25.8
85+
--------------
86+
[issues resolved](https://github.com/javaparser/javaparser/milestone/204?closed=1)
87+
88+
### Added
89+
90+
* feat: creates cache statistics and moves Cache interface to javaparser-core (PR [#4278](https://github.com/javaparser/javaparser/pull/4278) by [@jlerbsc](https://github.com/jlerbsc))
91+
* feat: Add parseArrayInitializerExpr to JavaParser API (PR [#4276](https://github.com/javaparser/javaparser/pull/4276) by [@iMashtak](https://github.com/iMashtak))
92+
* feat: A visitor looking for a node by its position in an AST (PR [#4258](https://github.com/javaparser/javaparser/pull/4258) by [@jlerbsc](https://github.com/jlerbsc))
93+
94+
### Changed
95+
96+
* fix: Partial removal of the use of instanceof in favour of the use of the API (PR [#4280](https://github.com/javaparser/javaparser/pull/4280) by [@jlerbsc](https://github.com/jlerbsc))
97+
* [GHA] Run on java 18 (PR [#4252](https://github.com/javaparser/javaparser/pull/4252) by [@hazendaz](https://github.com/hazendaz))
98+
99+
### Fixed
100+
101+
* fix: issue 4240 Calling resolve on catch block parameter throws exception (PR [#4279](https://github.com/javaparser/javaparser/pull/4279) by [@jlerbsc](https://github.com/jlerbsc))
102+
* Fix: issue 4270 Exception when resolving ObjectCreationExpr with nested varargs (PR [#4273](https://github.com/javaparser/javaparser/pull/4273) by [@jlerbsc](https://github.com/jlerbsc))
103+
* add Java_18 to yieldSupport (PR [#4262](https://github.com/javaparser/javaparser/pull/4262) by [@Kimmmey](https://github.com/Kimmmey))
104+
* fix: issue #4245 UnsupportedOperationException with LexicalPreservingPrinter when removing a sealed modified (PR [#4253](https://github.com/javaparser/javaparser/pull/4253) by [@jlerbsc](https://github.com/jlerbsc))
105+
* [ci] Fix change log released version as 3.25.7 (PR [#4251](https://github.com/javaparser/javaparser/pull/4251) by [@hazendaz](https://github.com/hazendaz))
106+
* Fix: issue 3278 Lazy types cause stack overflow when trying to find the least upper bound type (PR [#4246](https://github.com/javaparser/javaparser/pull/4246) by [@jlerbsc](https://github.com/jlerbsc))
107+
108+
### Developer Changes
109+
110+
* chore(deps): bump com.google.guava:guava from 32.1.3-jre to 33.0.0-jre (PR [#4264](https://github.com/javaparser/javaparser/pull/4264) by [@dependabot[bot]](https://github.com/apps/dependabot))
111+
112+
### Uncategorised
113+
114+
* Revert "Refactoring: Move cache features to javaparser-core" (PR [#4274](https://github.com/javaparser/javaparser/pull/4274) by [@jlerbsc](https://github.com/jlerbsc))
115+
116+
### :heart: Contributors
117+
118+
Thank You to all contributors who worked on this release!
119+
120+
* [@hazendaz](https://github.com/hazendaz)
121+
* [@iMashtak](https://github.com/iMashtak)
122+
* [@jlerbsc](https://github.com/jlerbsc)
123+
* [@Kimmmey](https://github.com/Kimmmey)
124+
125+
Version 3.25.7
126+
--------------
127+
[issues resolved](https://github.com/javaparser/javaparser/milestone/203?closed=1)
128+
129+
### Added
130+
131+
* [GHA] Remove old comment that is no longer valid around jdks and add jdk 17 (PR [#4226](https://github.com/javaparser/javaparser/pull/4226) by [@hazendaz](https://github.com/hazendaz))
132+
* Fix: issue 3833 No enum constant com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_18 (PR [#4221](https://github.com/javaparser/javaparser/pull/4221) by [@jlerbsc](https://github.com/jlerbsc))
133+
134+
### Changed
135+
136+
* Refactoring: Move cache features to javaparser-core (PR [#4238](https://github.com/javaparser/javaparser/pull/4238) by [@jlerbsc](https://github.com/jlerbsc))
137+
* Fix: removes reference to coveralls plugin which is not useful because codecov is used to track code coverage (PR [#4235](https://github.com/javaparser/javaparser/pull/4235) by [@jlerbsc](https://github.com/jlerbsc))
138+
* Uses jakarta.json api, upgrades jakarta.json-api to the latest version & uses new default Eclipse Parsson (PR [#4234](https://github.com/javaparser/javaparser/pull/4234) by [@jlerbsc](https://github.com/jlerbsc))
139+
* Move mockito to 4.11.0 and handle byte buddy consistently as well as properly define its agent in argLine for surefire (PR [#4228](https://github.com/javaparser/javaparser/pull/4228) by [@hazendaz](https://github.com/hazendaz))
140+
* Cleanup poms, use jakarta provided (javax namespace), hamcrest follow up, and switch coveralls plugin - Fixes #4111 (PR [#4225](https://github.com/javaparser/javaparser/pull/4225) by [@hazendaz](https://github.com/hazendaz))
141+
* [pom] Switch from hamcrest-library (deprecated) to hamcrest (PR [#4200](https://github.com/javaparser/javaparser/pull/4200) by [@hazendaz](https://github.com/hazendaz))
142+
* Putting code in the .orElse that has a side effect that can affect performance (PR [#4199](https://github.com/javaparser/javaparser/pull/4199) by [@jlerbsc](https://github.com/jlerbsc))
143+
144+
### Fixed
145+
146+
* Fix: issue 3650 unreproducible MAVEN_BUILD_TIMESTAMP (PR [#4243](https://github.com/javaparser/javaparser/pull/4243) by [@jlerbsc](https://github.com/jlerbsc))
147+
* Fix: issue 3972 StackOverflowError when resolving type of scope of a MethodCall (PR [#4236](https://github.com/javaparser/javaparser/pull/4236) by [@jlerbsc](https://github.com/jlerbsc))
148+
* [fix] Jdk 18 enum stub was extended off java 16 post processor not java17 (PR [#4227](https://github.com/javaparser/javaparser/pull/4227) by [@hazendaz](https://github.com/hazendaz))
149+
* Fix: issue #4047 Symbol Solver mixes name with type (PR [#4206](https://github.com/javaparser/javaparser/pull/4206) by [@jlerbsc](https://github.com/jlerbsc))
150+
* Fix grammar (PR [#4203](https://github.com/javaparser/javaparser/pull/4203) by [@mernst](https://github.com/mernst))
151+
* Minor changes : corrupted format, useless cast, javadoc (PR [#4198](https://github.com/javaparser/javaparser/pull/4198) by [@jlerbsc](https://github.com/jlerbsc))
152+
153+
### Developer Changes
154+
155+
* chore(deps): update actions/setup-java action to v4 (PR [#4241](https://github.com/javaparser/javaparser/pull/4241) by [@renovate[bot]](https://github.com/apps/renovate))
156+
* chore(deps): bump org.codehaus.mojo:build-helper-maven-plugin from 3.4.0 to 3.5.0 (PR [#4223](https://github.com/javaparser/javaparser/pull/4223) by [@dependabot[bot]](https://github.com/apps/dependabot))
157+
* Adds sponsor link to help the project live and grow (PR [#4204](https://github.com/javaparser/javaparser/pull/4204) by [@jlerbsc](https://github.com/jlerbsc))
158+
* chore(deps): bump org.codehaus.mojo:templating-maven-plugin from 1.0.0 to 3.0.0 (PR [#4195](https://github.com/javaparser/javaparser/pull/4195) by [@dependabot[bot]](https://github.com/apps/dependabot))
159+
* chore(deps): update junit5 monorepo to v5.10.1 (PR [#4193](https://github.com/javaparser/javaparser/pull/4193) by [@renovate[bot]](https://github.com/apps/renovate))
160+
161+
### Uncategorised
162+
163+
* Added unit tests for visitors (PR [#4239](https://github.com/javaparser/javaparser/pull/4239) by [@4everTheOne](https://github.com/4everTheOne))
164+
* Unit tests for class GenericListVisitorAdapter (PR [#4237](https://github.com/javaparser/javaparser/pull/4237) by [@4everTheOne](https://github.com/4everTheOne))
165+
* Update readme.md (PR [#4222](https://github.com/javaparser/javaparser/pull/4222) by [@jlerbsc](https://github.com/jlerbsc))
166+
167+
### :heart: Contributors
168+
169+
Thank You to all contributors who worked on this release!
170+
171+
* [@hazendaz](https://github.com/hazendaz)
172+
* [@jlerbsc](https://github.com/jlerbsc)
173+
* [@mernst](https://github.com/mernst)
174+
* [@4everTheOne](https://github.com/4everTheOne)
175+
176+
13177
Version 3.25.6
14178
--------------
15179
[issues resolved](https://github.com/javaparser/javaparser/milestone/202?closed=1)

doc/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javaparser/javaparser-core.svg)](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.javaparser%22%20AND%20a%3A%22javaparser-core%22)
1010
[![Build Status](https://travis-ci.org/javaparser/javaparser.svg?branch=master)](https://travis-ci.org/javaparser/javaparser)
11-
[![Coverage Status](https://coveralls.io/repos/javaparser/javaparser/badge.svg?branch=master&service=github)](https://coveralls.io/github/javaparser/javaparser?branch=master)
11+
[![Coverage Status](https://codecov.io/gh/javaparser/javaparser/branch/master/graphs/badge.svg?branch=master)](https://app.codecov.io/gh/javaparser/javaparser?branch=master)
1212
[![Join the chat at https://gitter.im/javaparser/javaparser](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/javaparser/javaparser?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1313
[![License LGPL-3/Apache-2.0](https://img.shields.io/badge/license-LGPL--3%2FApache--2.0-blue.svg)](LICENSE)
1414
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2667378.svg)](https://doi.org/10.5281/zenodo.2667378)

javaparser-core-generators/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>javaparser-parent</artifactId>
55
<groupId>com.github.javaparser</groupId>
6-
<version>3.25.6</version>
6+
<version>3.25.10</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

javaparser-core-generators/src/main/java/com/github/javaparser/generator/CompilationUnitGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
3-
* Copyright (C) 2011, 2013-2023 The JavaParser Team.
3+
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
44
*
55
* This file is part of JavaParser.
66
*

javaparser-core-generators/src/main/java/com/github/javaparser/generator/Generator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
3-
* Copyright (C) 2011, 2013-2023 The JavaParser Team.
3+
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
44
*
55
* This file is part of JavaParser.
66
*
@@ -107,7 +107,7 @@ private void addMethod(
107107
throw new AssertionError(f("Wanted to regenerate a method with signature %s in %s, but found more than one.", callable.getSignature(), containingClassOrInterface.getNameAsString()));
108108
}
109109
final CallableDeclaration<?> existingCallable = existingCallables.get(0);
110-
callable.setJavadocComment(callable.getJavadocComment().orElse(existingCallable.getJavadocComment().orElse(null)));
110+
callable.setJavadocComment(callable.getJavadocComment().orElseGet(() -> existingCallable.getJavadocComment().orElse(null)));
111111
annotateGenerated(callable);
112112
containingClassOrInterface.getMembers().replace(existingCallable, callable);
113113
}

javaparser-core-generators/src/main/java/com/github/javaparser/generator/NodeGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
3-
* Copyright (C) 2011, 2013-2023 The JavaParser Team.
3+
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
44
*
55
* This file is part of JavaParser.
66
*

0 commit comments

Comments
 (0)