The deprecated static methods called on RequestProcessor are removed. buildsys_trunk_before_merge
authormentlicher@netbeans.org
Mon, 15 Mar 2004 17:14:02 +0000
changeset 430890a64d47a19a
parent 4307 f1b67fed0876
child 4309 c6bb72ba9195
The deprecated static methods called on RequestProcessor are removed.
This is a fix of issue #23593.
vcs.profiles.cvsprofiles/src/org/netbeans/modules/vcs/profiles/cvsprofiles/commands/passwd/LoginPanel.java
vcs.profiles.pvcs/src/org/netbeans/modules/vcs/profiles/pvcs/commands/PvcsDatabaseSelectorPanel.java
     1.1 --- a/vcs.profiles.cvsprofiles/src/org/netbeans/modules/vcs/profiles/cvsprofiles/commands/passwd/LoginPanel.java	Mon Mar 15 16:54:54 2004 +0000
     1.2 +++ b/vcs.profiles.cvsprofiles/src/org/netbeans/modules/vcs/profiles/cvsprofiles/commands/passwd/LoginPanel.java	Mon Mar 15 17:14:02 2004 +0000
     1.3 @@ -199,7 +199,7 @@
     1.4      class BtnListener implements ActionListener{
     1.5          public void actionPerformed(ActionEvent ev){            
     1.6              if(ev.getSource() == loginButton){
     1.7 -                RequestProcessor.postRequest(new Runnable() {
     1.8 +                RequestProcessor.getDefault().post(new Runnable() {
     1.9                      public void run() {
    1.10                          CVSPasswd pasFile = new CVSPasswd((String)null);
    1.11                          pasFile.loadPassFile();
     2.1 --- a/vcs.profiles.pvcs/src/org/netbeans/modules/vcs/profiles/pvcs/commands/PvcsDatabaseSelectorPanel.java	Mon Mar 15 16:54:54 2004 +0000
     2.2 +++ b/vcs.profiles.pvcs/src/org/netbeans/modules/vcs/profiles/pvcs/commands/PvcsDatabaseSelectorPanel.java	Mon Mar 15 17:14:02 2004 +0000
     2.3 @@ -283,7 +283,7 @@
     2.4          dbListModel.addElement(messageLoading);
     2.5          validList = false;
     2.6          loading = true;
     2.7 -        RequestProcessor.postRequest(this);
     2.8 +        RequestProcessor.getDefault().post(this);
     2.9      }
    2.10      
    2.11      /** Retrieve database locations */