We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bed483 commit 5fe8988Copy full SHA for 5fe8988
1 file changed
src/extension.ts
@@ -23,7 +23,7 @@ function getSortingOptions(): SortingOptions {
23
}
24
25
/**
26
- * Check if the Red Hat Java extension is installed and active
+ * Check if the Red Hat Java extension is installed
27
*/
28
function isRedHatJavaExtensionAvailable(): boolean {
29
const extension = vscode.extensions.getExtension(REDHAT_JAVA_EXTENSION_ID);
@@ -43,7 +43,6 @@ async function formatDocumentWithRedHatJava(): Promise<void> {
43
await vscode.commands.executeCommand('editor.action.formatDocument');
44
} catch {
45
// Silently ignore formatting errors - the sorting is complete
46
- console.log('Failed to format document with Red Hat Java extension');
47
48
49
0 commit comments