remove obsolete revision decoding to utf 8

This commit is contained in:
Eduard Heimbuch
2020-09-01 10:01:00 +02:00
parent daa5d459cf
commit 4d8d39c410
2 changed files with 2 additions and 1 deletions

View File

@@ -88,7 +88,7 @@ public class SourceRootResource {
browseCommand.setPath(path);
browseCommand.setOffset(offset);
if (revision != null && !revision.isEmpty()) {
browseCommand.setRevision(URLDecoder.decode(revision, "UTF-8"));
browseCommand.setRevision(revision);
}
BrowserResult browserResult = browseCommand.getBrowserResult();