@@ -432,7 +432,7 @@ public void validate(byte[] xformData) {
432
432
factory .newDocumentBuilder ().parse (new ByteArrayInputStream (xformData ));
433
433
} catch (Exception e ) {
434
434
setError (true );
435
- errors .error ("\n \n \n >> XML is invalid. See above for the errors. " ,e );
435
+ errors .error ("\n \n \n >> XML is invalid." ,e );
436
436
return ;
437
437
}
438
438
@@ -496,26 +496,26 @@ public Object eval(Object[] args, EvaluationContext ec) {
496
496
// check for runtime errors
497
497
fd .initialize (true , new InstanceInitializationFactory ());
498
498
499
- errors .info ("\n \n >> Xform parsing completed! See above for any warnings. \n " );
499
+ errors .info ("\n \n >> Xform parsing completed!\n " );
500
500
501
501
// create FormEntryController from formdef
502
502
FormEntryModel fem = new FormEntryModel (fd );
503
503
504
504
// and try to step through the form...
505
505
if ( stepThroughEntireForm (fem ) ) {
506
506
setError (true );
507
- errors .error ("\n \n >> Xform is invalid! See above for errors and warnings. " );
507
+ errors .error ("\n \n >> Xform is invalid!" );
508
508
} else {
509
- errors .info ("\n \n >> Xform is valid! See above for any warnings. " );
509
+ errors .info ("\n \n >> Xform is valid!" );
510
510
}
511
511
512
512
} catch (XFormParseException e ) {
513
513
setError (true );
514
- errors .error ("\n \n >> XForm is invalid. See above for the errors. " ,e );
514
+ errors .error ("\n \n >> XForm is invalid." ,e );
515
515
516
516
} catch (Exception e ) {
517
517
setError (true );
518
- errors .error ("\n \n >> Something broke the parser. See above for a hint. " ,e );
518
+ errors .error ("\n \n >> Something broke the parser." ,e );
519
519
520
520
}
521
521
0 commit comments