Skip to content

Commit 44a3f1f

Browse files
committed
Add deprecation for removal notices in Util class
Follow-up work for commit 9ee38b5
1 parent 70a35a9 commit 44a3f1f

File tree

1 file changed

+4
-3
lines changed
  • bundles/org.eclipse.jface/src/org/eclipse/jface/util

1 file changed

+4
-3
lines changed

bundles/org.eclipse.jface/src/org/eclipse/jface/util/Util.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ public static String replaceAll(String src, String find, String replacement) {
501501
* Windowing system constant.
502502
* @since 3.5
503503
*/
504-
@Deprecated
504+
@Deprecated(forRemoval = true, since = "2025-03") // 2025-03 was added later for information purposes
505505
public static final String WS_MOTIF = "motif";//$NON-NLS-1$
506506

507507
/**
@@ -514,14 +514,14 @@ public static String replaceAll(String src, String find, String replacement) {
514514
* Windowing system constant.
515515
* @since 3.5
516516
*/
517-
@Deprecated
517+
@Deprecated(forRemoval = true, since = "2025-03") // 2025-03 was added later for information purposes
518518
public static final String WS_PHOTON = "photon";//$NON-NLS-1$
519519

520520
/**
521521
* Windowing system constant.
522522
* @since 3.5
523523
*/
524-
@Deprecated
524+
@Deprecated(forRemoval = true, since = "2025-03") // 2025-03 was added later for information purposes
525525
public static final String WS_CARBON = "carbon";//$NON-NLS-1$
526526

527527
/**
@@ -534,6 +534,7 @@ public static String replaceAll(String src, String find, String replacement) {
534534
* Windowing system constant.
535535
* @since 3.5
536536
*/
537+
@Deprecated(forRemoval = true, since = "2025-03") // 2025-03 was added later for information purposes
537538
public static final String WS_WPF = "wpf";//$NON-NLS-1$
538539

539540
/**

0 commit comments

Comments
 (0)