Skip to content

Commit

Permalink
Remove redundant modifier in interfaces as suggested by Sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
acollign committed Jan 30, 2012
1 parent 6353fac commit 45137a3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/net/eliosoft/elios/gui/views/ViewInterface.java
Expand Up @@ -30,12 +30,12 @@ public interface ViewInterface {
* get the component containing the view
* @return the view component
*/
public JComponent getViewComponent();
JComponent getViewComponent();

/**
* Returns the localized title of the view.
*
* @return the localized title.
*/
public String getLocalizedTitle();
String getLocalizedTitle();
}
Expand Up @@ -49,7 +49,7 @@ public class ReleaseInformationDialogBuilder {
* the object built by the implementation
*/
public interface Builder<T> {
public T build();
T build();
}

/** parent {@link Frame}. **/
Expand Down
Expand Up @@ -12,22 +12,22 @@ public interface ReleaseInformationRepository {
*
* @return the {@link ReleaseCode} of current installed version
*/
public ReleaseCode getInstalledReleaseCode();
ReleaseCode getInstalledReleaseCode();


/**
* Returns the {@link ReleaseInformation} of current installed version.
*
* @return the {@link ReleaseInformation} of current installed version
*/
public ReleaseInformation getInstalled();
ReleaseInformation getInstalled();

/**
* Returns the {@link ReleaseInformation} of the latest release.
*
* @return the {@link ReleaseInformation} of the latest release
*/
public ReleaseInformation getLatest();
ReleaseInformation getLatest();

/**
* Returns the {@link ReleaseInformation} of the release identified by
Expand All @@ -37,6 +37,6 @@ public interface ReleaseInformationRepository {
* a {@link ReleaseCode}
* @return a {@link ReleaseInformation} or null if any release was found
*/
public ReleaseInformation getByReleaseCode(ReleaseCode releaseCode);
ReleaseInformation getByReleaseCode(ReleaseCode releaseCode);

}

0 comments on commit 45137a3

Please sign in to comment.