Skip to content

disable warmup tasks #5638

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -352,8 +352,9 @@
</folder>
</folder>
</folder>

<!-- disabled
<folder name="WarmUp">
<file name="org-netbeans-modules-editor-EditorWarmUpTask.instance"/>
</folder>
-->
</filesystem>
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,11 @@
<file name="refactoring-preview.settings" url="refactoring-preview.settings"/>
</folder>
</folder>
<!-- disabled
<folder name="WarmUp">
<file name="org-netbeans-modules-refactoring-impl-RefactoringWarmUpTask.instance"/>
</folder>
-->
<folder name="Loaders">
<folder name="folder">
<folder name="any">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
*/
public class JavaEditorWarmUpTask implements Runnable {

@ServiceProvider(service=Runnable.class,path="WarmUp")
// disabled
// @ServiceProvider(service=Runnable.class,path="WarmUp")
public static class Provider implements Runnable {

private AtomicBoolean b = new AtomicBoolean();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@
</folder>

<folder name="WarmUp">
<!-- disabled
<file name="org-netbeans-modules-java-j2seplatform-J2SEPlatformWarmUp.instance"/>
-->
<file name="org-netbeans-modules-java-j2seplatform-DebianJavaPlatformDetector.instance"/>
<file name="org-netbeans-modules-java-j2seplatform-SdkManJavaPlatformDetector.instance"/>
</folder>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
*
* @author Tomas Pavek, Peter Zavadsky
*/
@OnShowing
// disabled
//@OnShowing
public final class ContextMenuWarmUpTask implements Runnable {
@Override
public void run() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
*
* @author Dafe Simonek
*/
@ServiceProvider(service=Runnable.class, path="WarmUp")
// disabled
//@ServiceProvider(service=Runnable.class, path="WarmUp")
public final class DnDWarmUpTask implements Runnable {

/** Performs DnD pre-heat.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
*
* Plus hooked WindowListener on main window (see {@link NbWindowsAdapter})
*/
@ServiceProvider(service=Runnable.class, path="WarmUp")
// disabled
//@ServiceProvider(service=Runnable.class, path="WarmUp")
public final class MenuWarmUpTask implements Runnable {

private Component[] comps;
Expand Down