Skip to content

Commit

Permalink
refactor: use constants
Browse files Browse the repository at this point in the history
- to be more consistent with other places in this file
that uses constants to represent Java versions.

[#186054019]
  • Loading branch information
peterhaochen47 committed Oct 20, 2023
1 parent dd026a8 commit a11ad85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ subprojects {

[compileJava, compileTestJava]*.options*.compilerArgs = ["-Xlint:none", "-nowarn"]

sourceCompatibility = 1.17
targetCompatibility = 1.17
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

test {
maxParallelForks = 1
Expand Down

0 comments on commit a11ad85

Please sign in to comment.