-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use proper identifiers as identifiers #1708
base: develop
Are you sure you want to change the base?
Conversation
7ef188f
to
d1afe3a
Compare
@@ -40,7 +40,7 @@ | |||
|
|||
public class AlkaneIdentifier { | |||
|
|||
public static final String IDENTIFIER = "Alkanes Identifier"; // $NON-NLS-N$ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep Identifier
@@ -23,7 +23,7 @@ | |||
|
|||
public class TargetValidator implements IValidator<Object> { | |||
|
|||
public static final String IDENTIFIER = "Manual"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep Identifier
@@ -20,7 +20,8 @@ public interface INistSupport { | |||
*/ | |||
String NIST_IDENTIFIER_LEGACY_1 = "NIST"; // $NON-NLS-N$ | |||
String NIST_IDENTIFIER_LEGACY_2 = "NIST (external)"; // $NON-NLS-N$ | |||
String NIST_IDENTIFIER = "NIST (extern)"; // $NON-NLS-N$ | |||
String NIST_IDENTIFIER_LEGACY_3 = "NIST (extern)"; // $NON-NLS-N$ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep Identifier
@@ -48,8 +48,8 @@ public void test2() { | |||
|
|||
public void test3() { | |||
|
|||
identificationTarget.setIdentifier("ChemClipse"); | |||
assertEquals("ChemClipse", identificationTarget.getIdentifier()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not necessary to change this test.
Keep the identifier as they are, otherwise the
Example file saved with Identifier changed to |
#1707