Skip to content

Commit

Permalink
chore: fix lint warning about indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tony19 committed Nov 7, 2022
1 parent 78a1221 commit 9d6c31f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static void registerConfigurationWatchList(Context context, Configuration
}

public static void setMainWatchURL(Context context, URL url) {
if (context == null) return;
if (context == null) return;

ConfigurationWatchList cwl = getConfigurationWatchList(context);
if (cwl == null) {
Expand Down Expand Up @@ -89,7 +89,7 @@ public static void addToWatchList(Context context, URL url) {
// }

public static ConfigurationWatchList getConfigurationWatchList(Context context) {
if (context == null) return null;
if (context == null) return null;
return (ConfigurationWatchList) context.getObject(CoreConstants.CONFIGURATION_WATCH_LIST);
}

Expand Down

0 comments on commit 9d6c31f

Please sign in to comment.