mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
autoconfig: fix indentation
Indent these two lines, so it's visually clear that they are part of the condition.
This commit is contained in:
parent
8e59b386e3
commit
9e8c97e894
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ var defaultChrome = new FileUtils.File("/etc/mobile-config-firefox/userChrome.cs
|
||||||
|
|
||||||
// Remove the existing userChrome.css if older than the installed one
|
// Remove the existing userChrome.css if older than the installed one
|
||||||
if (chromeFile.exists() && defaultChrome.exists() &&
|
if (chromeFile.exists() && defaultChrome.exists() &&
|
||||||
chromeFile.lastModifiedTime < defaultChrome.lastModifiedTime) {
|
chromeFile.lastModifiedTime < defaultChrome.lastModifiedTime) {
|
||||||
chromeFile.remove(false);
|
chromeFile.remove(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ var defaultContent = new FileUtils.File("/etc/mobile-config-firefox/userContent.
|
||||||
|
|
||||||
// Remove the existing userContent.css if older than the installed one
|
// Remove the existing userContent.css if older than the installed one
|
||||||
if (contentFile.exists() && defaultContent.exists() &&
|
if (contentFile.exists() && defaultContent.exists() &&
|
||||||
contentFile.lastModifiedTime < defaultContent.lastModifiedTime) {
|
contentFile.lastModifiedTime < defaultContent.lastModifiedTime) {
|
||||||
contentFile.remove(false);
|
contentFile.remove(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue