mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 23:25:26 +02:00
[cleanup] Fix javadoc errors
This commit is contained in:
parent
a249835ec6
commit
4305ce389b
1 changed files with 6 additions and 4 deletions
|
@ -18,7 +18,7 @@ package org.eclipse.rse.services.clientserver;
|
|||
|
||||
public interface IServiceConstants
|
||||
{
|
||||
public static final String TOKEN_SEPARATOR = "|";
|
||||
public static final String TOKEN_SEPARATOR = "|"; //$NON-NLS-1$
|
||||
|
||||
// Unexpected Error
|
||||
public static final String UNEXPECTED_ERROR = "unexpectedError";
|
||||
|
@ -29,7 +29,9 @@ public interface IServiceConstants
|
|||
public static final String FAILED_WITH_EXCEPTION = "failed with exception";
|
||||
public static final String FAILED_WITH_SECURITY = "failed with security";
|
||||
public static final String FAILED_TO_DELETE_DIR = "failed to delete directory";
|
||||
public static final String SUCCESS = "success";
|
||||
public static final String FAILED = "failed";
|
||||
public static final String VERSION_1 = "version_1";
|
||||
|
||||
// Status strings for communication
|
||||
public static final String SUCCESS = "success"; //$NON-NLS-1$
|
||||
public static final String FAILED = "failed"; //$NON-NLS-1$
|
||||
public static final String VERSION_1 = "version_1"; //$NON-NLS-1$
|
||||
}
|
Loading…
Add table
Reference in a new issue