You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.warn(`The project's Lombok version ${lombokPath2VersionNumber(lombokJarPath)} is not supported, Falling back to the built-in Lombok version ${lombokPath2VersionNumber(getExtensionLombokPath(context))}`);
logger.warn(`The project's Lombok version ${lombokVersion||'unknown'} is not supported, Falling back to the built-in Lombok version ${extensionLombokVersion||'unknown'}`);
111
121
}
112
122
}
113
123
if(isExtensionLombok){
@@ -197,11 +207,11 @@ export function registerLombokConfigureCommand(context: ExtensionContext) {
constmsg=`The project's Lombok version ${projectLombokVersion} is not supported. Falling back to the built-in Lombok version in the extension.`;
235
+
constmsg=`The project's Lombok version ${projectLombokVersion||'unknown'} is not supported. Falling back to the built-in Lombok version in the extension.`;
226
236
window.showWarningMessage(msg);
227
237
return;
228
238
}
@@ -250,17 +260,17 @@ export function registerLombokConfigureCommand(context: ExtensionContext) {
0 commit comments