Skip to content

Commit

Permalink
rename mediatag feature
Browse files Browse the repository at this point in the history
  • Loading branch information
tarfu committed Feb 21, 2017
1 parent e61aae0 commit 590f539
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/adobe/epubcheck/css/CSSHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public void endAtRule(String name)
}
if(inMedia){
inMedia = false;
report.info(path, FeatureEnum.HAS_MEDIATAGS, atRule.toCssString());
report.info(path, FeatureEnum.HAS_MEDIATAG, atRule.toCssString());
}
atRule = null;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/adobe/epubcheck/util/FeatureEnum.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public enum FeatureEnum
HAS_FIXED_LAYOUT("hasFixedLayout"),
HAS_HTML4("html 4"),
HAS_HTML5("html 5"),
HAS_MEDIATAGS("hasMediaTags"),
HAS_MEDIATAG("hasMediaTag"),
HAS_MICRODATA("microdata"),
HAS_NCX("Has ncx file"),
HAS_RDFA("RDFa"),
Expand Down

0 comments on commit 590f539

Please sign in to comment.