Skip to content

Commit 9ba4ee8

Browse files
committed
Remove 'See above' wording
1 parent 5d2dcd7 commit 9ba4ee8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: src/org/opendatakit/validate/FormValidator.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ public void validate(byte[] xformData) {
432432
factory.newDocumentBuilder().parse(new ByteArrayInputStream(xformData));
433433
} catch (Exception e) {
434434
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);
436436
return;
437437
}
438438

@@ -496,26 +496,26 @@ public Object eval(Object[] args, EvaluationContext ec) {
496496
// check for runtime errors
497497
fd.initialize(true, new InstanceInitializationFactory());
498498

499-
errors.info("\n\n>> Xform parsing completed! See above for any warnings.\n");
499+
errors.info("\n\n>> Xform parsing completed!\n");
500500

501501
// create FormEntryController from formdef
502502
FormEntryModel fem = new FormEntryModel(fd);
503503

504504
// and try to step through the form...
505505
if ( stepThroughEntireForm(fem) ) {
506506
setError(true);
507-
errors.error("\n\n>> Xform is invalid! See above for errors and warnings.");
507+
errors.error("\n\n>> Xform is invalid!");
508508
} else {
509-
errors.info("\n\n>> Xform is valid! See above for any warnings.");
509+
errors.info("\n\n>> Xform is valid!");
510510
}
511511

512512
} catch (XFormParseException e) {
513513
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);
515515

516516
} catch (Exception e) {
517517
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);
519519

520520
}
521521

0 commit comments

Comments
 (0)