Skip to content

Commit 695fb86

Browse files
committed
Avoid raw types
1 parent 899e152 commit 695fb86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/scijava/ui/AbstractUserInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public StatusBar getStatusBar() {
182182
}
183183

184184
@Override
185-
public ConsolePane getConsolePane() {
185+
public ConsolePane<?> getConsolePane() {
186186
return null;
187187
}
188188

src/main/java/org/scijava/ui/UserInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public interface UserInterface extends RichPlugin, Disposable {
9696
StatusBar getStatusBar();
9797

9898
/** Gets the main SciJava console pane, or null if not applicable. */
99-
ConsolePane getConsolePane();
99+
ConsolePane<?> getConsolePane();
100100

101101
/** Gets the system clipboard associated with this UI. */
102102
SystemClipboard getSystemClipboard();

0 commit comments

Comments
 (0)