8384208: Remove AppContext from java.awt.Taskbar

Reviewed-by: serb, azvegint
This commit is contained in:
Phil Race 2026-05-12 18:07:47 +00:00
parent a2ea276e83
commit 4fc26e3e82

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -184,6 +184,8 @@ public class Taskbar {
}
}
private static volatile Taskbar taskbar;
/**
* Returns the {@code Taskbar} instance of the current
* taskbar context. On some platforms the Taskbar API may not be
@ -205,12 +207,8 @@ public class Taskbar {
"supported on the current platform");
}
sun.awt.AppContext context = sun.awt.AppContext.getAppContext();
Taskbar taskbar = (Taskbar)context.get(Taskbar.class);
if (taskbar == null) {
taskbar = new Taskbar();
context.put(Taskbar.class, taskbar);
}
return taskbar;