Skip to content
Snippets Groups Projects
Commit a660922c authored by Florian Heck's avatar Florian Heck
Browse files

removed obsolete null-byte in status parsing

parent 5a4ca717
No related branches found
No related tags found
No related merge requests found
......@@ -559,7 +559,7 @@ public class Repository {
return null;
}
return Status.parseStatus(this, execRes.stdOut+"\0"); //TODO Parser so anpassen, dass kein \0 erforderlich ist.
return Status.parseStatus(this, execRes.stdOut);
};
return output.map(toStatus);
......
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