Skip to content

Commit b4df8b8

Browse files
committed
Fix Javadoc error in ITerminalViewControl
The #addMouseListener() and #removeMouseListener() methods in ITerminalViewControl refer to the non-existent ITerminalMouseListener2 interface. This change removes the broken reference.
1 parent f3519ff commit b4df8b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

terminal/bundles/org.eclipse.terminal.control/src/org/eclipse/terminal/control/ITerminalViewControl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,13 @@ public interface ITerminalViewControl {
149149

150150
/**
151151
* @since 4.1
152-
* @param listener may be a {@link ITerminalMouseListener2} for extra callbacks
152+
* @param listener the mouse listener to add
153153
*/
154154
void addMouseListener(ITerminalMouseListener listener);
155155

156156
/**
157157
* @since 4.1
158-
* @param listener may be a {@link ITerminalMouseListener2} for extra callbacks
158+
* @param listener the mouse listener to remove
159159
*/
160160
void removeMouseListener(ITerminalMouseListener listener);
161161

0 commit comments

Comments
 (0)