Merge "StaticModule: Fix misspelled method name"
diff --git a/gerrit-httpd/src/main/java/com/google/gerrit/httpd/raw/StaticModule.java b/gerrit-httpd/src/main/java/com/google/gerrit/httpd/raw/StaticModule.java
index 3c05d0c..0571ee6 100644
--- a/gerrit-httpd/src/main/java/com/google/gerrit/httpd/raw/StaticModule.java
+++ b/gerrit-httpd/src/main/java/com/google/gerrit/httpd/raw/StaticModule.java
@@ -362,11 +362,11 @@
"Error initializing static content paths", e);
}
- sourceRoot = getSourseRootOrNull();
+ sourceRoot = getSourceRootOrNull();
builder = new BazelBuild(sourceRoot);
}
- private static Path getSourseRootOrNull() {
+ private static Path getSourceRootOrNull() {
try {
return GerritLauncher.resolveInSourceRoot(".");
} catch (FileNotFoundException e) {