mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 00:15:02 -04:00
Do not auto-trim --def name=value parameters
This commit is contained in:
parent
267f601af9
commit
a2be7bdd09
@ -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++;
|
||||
|
Loading…
Reference in New Issue
Block a user