Skip to content

Commit f3f7d7e

Browse files
committed
Upversion to 0.46.0
Signed-off-by: Fred Bricon <fbricon@gmail.com>
1 parent 3c6c2a5 commit f3f7d7e

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ The following settings are supported:
8181
* `java.format.enabled` : Enable/disable the default Java formatter.
8282
* `java.contentProvider.preferred` : Preferred content provider (see 3rd party decompilers available in [vscode-java-decompiler](https://github.com/dgileadi/vscode-java-decompiler)).
8383
* `java.import.gradle.enabled` : Enable/disable the Gradle importer.
84+
* `java.import.gradle.wrapper.enabled`: Enable/disable the Gradle wrapper.
85+
* `java.import.gradle.version`: Gradle version, used if the gradle wrapper is missing or disabled.
8486
* `java.import.maven.enabled` : Enable/disable the Maven importer.
8587
* `java.autobuild.enabled` : Enable/disable the 'auto build'.
8688
* `java.maxConcurrentBuilds`: Set max simultaneous project builds.
@@ -95,12 +97,10 @@ The following settings are supported:
9597
* `java.completion.guessMethodArguments` : When set to true, method arguments are guessed when a method is selected from as list of code assist proposals.
9698
* `java.completion.enabled` : Enable/disable code completion support.
9799
* `java.configuration.checkProjectSettingsExclusions`: Checks if the extension-generated project settings files (`.project`, `.classpath`, `.factorypath`, `.settings/`) should be excluded from the file explorer. Defaults to `true`.
98-
* `java.codeGeneration.hashCodeEquals.useJava7Objects`: Use Objects.hash and Objects.equals when generating the hashCode and equals methods. This setting only applies to Java 7 and higher. Defaults to `false`.
99-
* `java.codeGeneration.hashCodeEquals.useInstanceof`: Use 'instanceof' to compare types when generating the hashCode and equals methods. Defaults to `false`.
100100
* `java.foldingRange.enabled`: Enable/disable smart folding range support. If disabled, it will use the default indentation-based folding range provided by VS Code.
101-
102-
*New in 0.43.0:*
103101
* `java.maven.downloadSources`: Enable/disable eager download of Maven source artifacts.
102+
* `java.codeGeneration.hashCodeEquals.useInstanceof`: Use 'instanceof' to compare types when generating the hashCode and equals methods. Defaults to `false`.
103+
* `java.codeGeneration.hashCodeEquals.useJava7Objects`: Use Objects.hash and Objects.equals when generating the hashCode and equals methods. This setting only applies to Java 7 and higher. Defaults to `false`.
104104
* `java.codeGeneration.useBlocks`: Use blocks in 'if' statements when generating the methods. Defaults to `false`.
105105
* `java.codeGeneration.generateComments`: Generate method comments when generating the methods. Defaults to `false`.
106106
* `java.codeGeneration.toString.template`: The template for generating the toString method. Defaults to `${object.className} [${member.name()}=${member.value}, ${otherMembers}]`.
@@ -109,9 +109,6 @@ The following settings are supported:
109109
* `java.codeGeneration.toString.listArrayContents`: List contents of arrays instead of using native toString(). Defaults to `true`.
110110
* `java.codeGeneration.toString.limitElements`: Limit number of items in arrays/collections/maps to list, if 0 then list all. Defaults to `0`.
111111

112-
*New in 0.45.0:*
113-
* `java.import.gradle.wrapper.enabled`: Enable/disable the Gradle wrapper.
114-
* `java.import.gradle.version`: Gradle version, used if the gradle wrapper is missing or disabled.
115112

116113
Troubleshooting
117114
===============

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Red Hat",
66
"icon": "icons/icon128.png",
77
"license": "EPL-1.0",
8-
"version": "0.45.0",
8+
"version": "0.46.0",
99
"publisher": "redhat",
1010
"bugs": "https://github.com/redhat-developer/vscode-java/issues",
1111
"preview": true,

0 commit comments

Comments
 (0)