|
@@ -41,8 +41,8 @@ public class CommonAnalysisUtil {
|
|
|
}
|
|
|
|
|
|
public static void html2StructureMap(List<String> titles, String htmlText, Map<String, String> structureMap) {
|
|
|
- sortTitles(titles, htmlText);
|
|
|
- cutByTitles(htmlText, titles, 0, structureMap);
|
|
|
+ List<String> sortTitles = sortTitles(titles, htmlText);
|
|
|
+ cutByTitles(htmlText, sortTitles, 0, structureMap);
|
|
|
}
|
|
|
|
|
|
/**
|