Fixed a typo

This commit is contained in:
Fuzzlemann 2017-07-26 16:53:22 +02:00
parent 8121bb758d
commit 8da23eab78

View File

@ -30,7 +30,7 @@ public class PlaceholderUtils {
* @return HashMap that contains string for each placeholder.
*/
public static Map<String, String> getAnalysisReplaceRules(AnalysisData data) {
Benchmark.start("Replace Placeholders Anaysis");
Benchmark.start("Replace Placeholders Analysis");
HashMap<String, String> replaceMap = new HashMap<>();
replaceMap.putAll(data.getReplaceMap());
replaceMap.put("%plugins%", data.replacePluginsTabLayout());
@ -50,7 +50,7 @@ public class PlaceholderUtils {
replaceMap.put("#" + defaultCols[i], "#" + colors[i]);
}
}
Benchmark.stop("Replace Placeholders Anaysis");
Benchmark.stop("Replace Placeholders Analysis");
return replaceMap;
}