Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java')
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java16
1 files changed, 4 insertions, 12 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java
index 700851a57..935069365 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java
@@ -74,9 +74,7 @@ public class PServerConnection implements IServerConnection {
private InputStream inputStream;
private OutputStream outputStream;
- /**
- * @see Connection#doClose()
- */
+ @Override
public void close() throws IOException {
try {
if (inputStream != null) inputStream.close();
@@ -95,9 +93,7 @@ public class PServerConnection implements IServerConnection {
}
}
- /**
- * @see Connection#doOpen()
- */
+ @Override
public void open(IProgressMonitor monitor) throws IOException, CVSAuthenticationException {
monitor.subTask(CVSMessages.PServerConnection_authenticating);
@@ -154,15 +150,11 @@ public class PServerConnection implements IServerConnection {
return proxy;
}
- /**
- * @see Connection#getInputStream()
- */
+ @Override
public InputStream getInputStream() {
return inputStream;
}
- /**
- * @see Connection#getOutputStream()
- */
+ @Override
public OutputStream getOutputStream() {
return outputStream;
}

Back to the top