### Eclipse Workspace Patch 1.0 #P org.eclipse.team.cvs.ui Index: src/org/eclipse/team/internal/ccvs/ui/wizards/GenerateDiffFileWizard.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/GenerateDiffFileWizard.java,v retrieving revision 1.63 diff -u -r1.63 GenerateDiffFileWizard.java --- src/org/eclipse/team/internal/ccvs/ui/wizards/GenerateDiffFileWizard.java 26 Jan 2009 12:24:05 -0000 1.63 +++ src/org/eclipse/team/internal/ccvs/ui/wizards/GenerateDiffFileWizard.java 9 Apr 2009 09:53:49 -0000 @@ -129,6 +129,8 @@ * The default values store used to initialize the selections. */ private final DefaultValuesStore store; + + private Job waitForChangesJob = null; class LocationPageContentProvider extends BaseWorkbenchContentProvider { @@ -974,10 +976,10 @@ return Status.OK_STATUS; } } - WaitForChangesJob job =new WaitForChangesJob(this); + waitForChangesJob = new WaitForChangesJob(this); //Don't need the job in the UI, make it a system job - job.setSystem(true); - job.schedule(); + waitForChangesJob.setSystem(true); + waitForChangesJob.schedule(); return fParticipant.getSyncInfoSet(); } #P org.eclipse.team.tests.cvs.core Index: src/org/eclipse/team/tests/ccvs/ui/AllUITests.java =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/AllUITests.java,v retrieving revision 1.10 diff -u -r1.10 AllUITests.java --- src/org/eclipse/team/tests/ccvs/ui/AllUITests.java 3 Jun 2008 13:35:59 -0000 1.10 +++ src/org/eclipse/team/tests/ccvs/ui/AllUITests.java 9 Apr 2009 09:53:51 -0000 @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2007 IBM Corporation and others. + * Copyright (c) 2000, 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -35,7 +35,8 @@ suite.addTest(EditorTests.suite()); suite.addTest(PatchWizardRadioButtonGroupTests.suite()); suite.addTest(CVSProjectSetImportTest.suite()); + suite.addTest(CreatePatchTest.suite()); return suite; } - + } Index: plugin.xml =================================================================== RCS file: /cvsroot/eclipse/org.eclipse.team.tests.cvs.core/plugin.xml,v retrieving revision 1.33 diff -u -r1.33 plugin.xml --- plugin.xml 22 Sep 2008 16:05:32 -0000 1.33 +++ plugin.xml 9 Apr 2009 09:53:51 -0000 @@ -1,41 +1,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +