|
From: <caw...@us...> - 2007-09-13 01:08:56
|
Revision: 3167
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=3167&view=rev
Author: cawilliams
Date: 2007-09-12 18:08:54 -0700 (Wed, 12 Sep 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/actions/ShowInRubyExplorerViewAction.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/actions/ShowInRubyExplorerViewAction.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/actions/ShowInRubyExplorerViewAction.java 2007-09-13 01:08:44 UTC (rev 3166)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/actions/ShowInRubyExplorerViewAction.java 2007-09-13 01:08:54 UTC (rev 3167)
@@ -25,7 +25,7 @@
import org.rubypeople.rdt.internal.ui.rubyeditor.RubyEditor;
/**
* This action reveals the currently selected Ruby element in the
- * package explorer.
+ * ruby explorer.
* <p>
* The action is applicable to selections containing elements of type
* <code>IRubyElement</code>.
@@ -40,7 +40,7 @@
private RubyEditor fEditor;
/**
- * Creates a new <code>ShowInPackageViewAction</code>. The action requires
+ * Creates a new <code>ShowInRubyExplorerViewAction</code>. The action requires
* that the selection provided by the site's selection provider is of type
* <code>org.eclipse.jface.viewers.IStructuredSelection</code>.
*
@@ -107,11 +107,7 @@
run((IRubyElement)selection.getFirstElement());
}
- /*
- * No Rubydoc. The method should be internal but can't be changed since
- * we shipped it with a public visibility
- */
- public void run(IRubyElement element) {
+ private void run(IRubyElement element) {
if (element == null)
return;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|