|
From: <caw...@us...> - 2007-07-24 14:16:54
|
Revision: 2825
http://svn.sourceforge.net/rubyeclipse/?rev=2825&view=rev
Author: cawilliams
Date: 2007-07-24 07:16:50 -0700 (Tue, 24 Jul 2007)
Log Message:
-----------
fix some of the wording on the jobs this class creates
Modified Paths:
--------------
trunk/com.aptana.rdt/src/com/aptana/rdt/internal/core/gems/GemManager.java
Modified: trunk/com.aptana.rdt/src/com/aptana/rdt/internal/core/gems/GemManager.java
===================================================================
--- trunk/com.aptana.rdt/src/com/aptana/rdt/internal/core/gems/GemManager.java 2007-07-23 20:47:33 UTC (rev 2824)
+++ trunk/com.aptana.rdt/src/com/aptana/rdt/internal/core/gems/GemManager.java 2007-07-24 14:16:50 UTC (rev 2825)
@@ -305,7 +305,7 @@
String command = UPDATE_COMMAND + " " + gem.getName();
ILaunchConfiguration config = createGemLaunchConfiguration(command, true);
final ILaunch launch = config.launch(ILaunchManager.RUN_MODE, null);
- Job job = new Job("Notify gem listeners of uninstalled gem") {
+ Job job = new Job("Updating gem " + gem.getName()) {
@Override
protected IStatus run(IProgressMonitor monitor) {
@@ -405,7 +405,7 @@
}
ILaunchConfiguration config = createGemLaunchConfiguration(command, true);
final ILaunch launch = config.launch(ILaunchManager.RUN_MODE, null);
- Job job = new Job("Notify gem listeners of uninstalled gem") {
+ Job job = new Job("Installing gem " + gem.getName()) {
@Override
protected IStatus run(IProgressMonitor monitor) {
@@ -454,7 +454,7 @@
}
ILaunchConfiguration config = createGemLaunchConfiguration(command, true);
final ILaunch launch = config.launch(ILaunchManager.RUN_MODE, null);
- Job job = new Job("Notify gem listeners of uninstalled gem") {
+ Job job = new Job("Notifying gem listeners of uninstalled gem") {
@Override
protected IStatus run(IProgressMonitor monitor) {
@@ -633,7 +633,7 @@
try {
ILaunchConfiguration config = createGemLaunchConfiguration(UPDATE_COMMAND, true);
final ILaunch launch = config.launch(ILaunchManager.RUN_MODE, null);
- Job job = new Job("Notify gem listeners of uninstalled gem") {
+ Job job = new Job("Updating gem listing") {
@Override
protected IStatus run(IProgressMonitor monitor) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|