Skip to content
Snippets Groups Projects
Commit de41ef2f authored by Dominique Marcadet's avatar Dominique Marcadet
Browse files

correct info/error message

parent 7cd20e76
No related branches found
No related tags found
1 merge request!3Resolve "Implement NSD based validation"
......@@ -104,10 +104,10 @@ public class NsdEObjectValidator implements EValidator {
Optional< LNClass > lnClassFound = nsdResourceSet.getLNClassStream().filter( lNClass -> lNClass.getName().equals( ln.getLnClass() )).findAny();
if( ! lnClassFound.isPresent() ) {
AbstractRiseClipseConsole.getConsole().error( "ln.getLnClass() not found in NSD files" );
AbstractRiseClipseConsole.getConsole().error( "LNClass " + ln.getLnClass() + " not found in NSD files" );
return false;
}
AbstractRiseClipseConsole.getConsole().info( "found ln.getLnClass() in NSD files" );
AbstractRiseClipseConsole.getConsole().info( "found LNClass " + ln.getLnClass() + " in NSD files" );
// lnClassFound contains DataObject which describes allowed DOI in LN
for( DOI doi : ln.getDOI() ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment