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
It logically should be "if ( (edmm != null) && edmm ) {"
(instead of the current "if (edmm != null && edmm) {"
Which, according to the Java grammar operator precedences starts to evaluate the statement "null && edmm" that raises a NullPointerException because edmm is null
... even thaught the intended condition seams clear)
In the current state, this prevents CSAR import of template in Winery
The text was updated successfully, but these errors were encountered:
winery/org.eclipse.winery.repository.rest/src/main/java/org/eclipse/winery/repository/rest/resources/MainResource.java
Line 252 in 8a0c1ab
It logically should be "if ( (edmm != null) && edmm ) {"
(instead of the current "if (edmm != null && edmm) {"
Which, according to the Java grammar operator precedences starts to evaluate the statement "null && edmm" that raises a NullPointerException because edmm is null
... even thaught the intended condition seams clear)
In the current state, this prevents CSAR import of template in Winery
The text was updated successfully, but these errors were encountered: