Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Unified Diff: sky/shell/org/domokit/sky/shell/SkyMain.java

Issue 1135953004: public org.domokit.sky.shell.SkyMain.ensureInitialized() (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/shell/org/domokit/sky/shell/SkyMain.java
diff --git a/sky/shell/org/domokit/sky/shell/SkyMain.java b/sky/shell/org/domokit/sky/shell/SkyMain.java
index 78cd7347c0794be8b95a3f2597240537a4785826..9966979384d79353700153a9f209ee760cb69989 100644
--- a/sky/shell/org/domokit/sky/shell/SkyMain.java
+++ b/sky/shell/org/domokit/sky/shell/SkyMain.java
@@ -25,9 +25,10 @@ public class SkyMain {
/**
* Initializes the native system.
**/
- static void ensureInitialized(Context applicationContext) {
- if (sInitialized)
+ public static void ensureInitialized(Context applicationContext) {
+ if (sInitialized) {
return;
+ }
try {
ResourceExtractor resourceExtractor = ResourceExtractor.get(applicationContext);
resourceExtractor.startExtractingResources();
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698