Skip to content

Commit

Permalink
fix javadoc @return
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T authored and jukzi committed Nov 2, 2023
1 parent 6a60ce6 commit 0a6f922
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ void presetChooserDialog () {
*
* @param extension file extension as a string
*
* @returns true if the extension contains any of the glob pattern wildcards
* @return true if the extension contains any of the glob pattern wildcards
*/
private boolean isGlobPattern (String extension) {
if (extension.contains ("*") ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
package org.eclipse.swt.examples.launcher;


import org.eclipse.core.runtime.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.swt.graphics.Image;

/**
* ItemDescriptor collects information about a launch item.
Expand Down Expand Up @@ -95,7 +96,7 @@ public String getDescription() {
/**
* Returns an icon for this descriptor
*
* @returns an icon, null if the item is a folder
* @return an icon, null if the item is a folder
*/
public Image getIcon() {
return icon;
Expand Down

0 comments on commit 0a6f922

Please sign in to comment.