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