StaticModule: Fix misspelled method name

Change-Id: I98b9cdf4d9bfc541bc6168be1cd87b611cbeb71d
This commit is contained in:
David Pursehouse
2017-01-24 13:40:44 +09:00
parent a67cfb868f
commit a2b1bb2ecb

View File

@@ -362,11 +362,11 @@ public class StaticModule extends ServletModule {
"Error initializing static content paths", e); "Error initializing static content paths", e);
} }
sourceRoot = getSourseRootOrNull(); sourceRoot = getSourceRootOrNull();
builder = new BazelBuild(sourceRoot); builder = new BazelBuild(sourceRoot);
} }
private static Path getSourseRootOrNull() { private static Path getSourceRootOrNull() {
try { try {
return GerritLauncher.resolveInSourceRoot("."); return GerritLauncher.resolveInSourceRoot(".");
} catch (FileNotFoundException e) { } catch (FileNotFoundException e) {