Skip to content

Commit

Permalink
chore: fix deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Jun 14, 2024
1 parent 275c654 commit 91a5349
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
package de.sebthom.eclipse.open_with_eclipse.localization;

import static net.sf.jstuff.core.validation.NullAnalysisHelper.*;
import static net.sf.jstuff.core.validation.NullAnalysisHelper.lateNonNull;

import de.sebthom.eclipse.commons.localization.MessagesInitializer;

Expand All @@ -20,7 +20,7 @@ public final class Messages {

// CHECKSTYLE:IGNORE .* FOR NEXT 100 LINES

public static String OpenWithEclipse_PluginName = lazyNonNull();
public static String OpenWithEclipse_PluginName = lateNonNull();
public static String OpenWithEclipse_OpenWith = "Open with {0}";
public static String OpenWithEclipse_Pref_CreateOpenWithRegistration = "Create Windows context/right-click menu entry";
public static String OpenWithEclipse_Pref_ContextMentyEntryLabel = "Menu entry name:";
Expand Down

0 comments on commit 91a5349

Please sign in to comment.