1
0
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:
Ted Pavlic
2009-04-02 17:57:09 -04:00
parent 15ff0ace59
commit bd72e0191a

View File

@@ -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;
})();