A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/mariuszgromada/MathParser.org-mXparser/issues/283 below:

Unnecessary newline at the end in getErrorMessage() · Issue #283 · mariuszgromada/MathParser.org-mXparser · GitHub

Skip to content Navigation Menu Search code, repositories, users, issues, pull requests...

Saved searches Use saved searches to filter your results more quickly

Sign up You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

Unnecessary newline at the end in getErrorMessage() #283

Description

Code example

Expression e1 = new Expression("2+3");
Expression e2 = new Expression3+4");
e1.checkSyntax();
e2.checkSyntax();
System.out.println("----- START");
System.out.println(e1.getErrorMessage());
System.out.println(e2.getErrorMessage());
System.out.println("----- END");

Code result:

----- START
[2+3] checking ...
[2+3] no errors.

[3+4] checking ...
[3+4] no errors.

----- END

Should be:

----- START
[2+3] checking ...
[2+3] no errors.
[3+4] checking ...
[3+4] no errors.
----- END
Metadata Metadata

Assignees

No one assigned

Development

No branches or pull requests Issue actions

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4