Skip to content

Commit

Permalink
Mark unused methods for removal in WorkbenchWindowAdvisor
Browse files Browse the repository at this point in the history
These methods are not used since the 3.x migration, time to mark them
for deletion.
  • Loading branch information
vogella committed Nov 6, 2024
1 parent 3fd04b3 commit f5f77ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public void postWindowClose() {
* @deprecated This method is no longer used. Applications now define workbench
* window contents in their application model.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "3.36")
public void createWindowContents(Shell shell) {
((WorkbenchWindowConfigurer) getWindowConfigurer()).createDefaultContents(shell);
}
Expand All @@ -291,7 +291,7 @@ public void createWindowContents(Shell shell) {
* @deprecated This method is no longer used. Applications now define workbench
* window contents in their application model.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "3.36")
public Control createEmptyWindowContents(Composite parent) {
return null;
}
Expand Down

0 comments on commit f5f77ed

Please sign in to comment.