mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-13 08:45:47 +01:00
Make implicit semicolon explicit in new try line.
This commit is contained in:
@@ -1103,7 +1103,7 @@ lookup:
|
|||||||
IO.PATH_SEP = (function () {
|
IO.PATH_SEP = (function () {
|
||||||
let file = services.create("file");
|
let file = services.create("file");
|
||||||
let pathsep = "/";
|
let pathsep = "/";
|
||||||
try { file.initWithPath("/") } catch(e) { pathsep = "\\"; }
|
try { file.initWithPath("/"); } catch(e) { pathsep = "\\"; }
|
||||||
return pathsep;
|
return pathsep;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user