1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Do not auto-trim --def name=value parameters

This commit is contained in:
Reinhard Pointner 2016-05-22 06:24:07 +08:00
parent 267f601af9
commit a2be7bdd09

View File

@ -47,8 +47,8 @@ public class BindingsHandler extends MapOptionHandler {
return pos;
}
String n = getName(nv[0].trim());
String v = getValue(nv[1].trim());
String n = getName(nv[0]);
String v = getValue(nv[1]);
addToMap(map, n, v);
pos++;