Chromium Code Reviews| Index: java/org/chromium/distiller/webdocument/LIEnd.java |
| diff --git a/java/org/chromium/distiller/webdocument/LIEnd.java b/java/org/chromium/distiller/webdocument/LIEnd.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fde207769ba97d99cb6021e472ebd6dd7c85bd1b |
| --- /dev/null |
| +++ b/java/org/chromium/distiller/webdocument/LIEnd.java |
| @@ -0,0 +1,12 @@ |
| +package org.chromium.distiller.webdocument; |
| + |
| +public class LIEnd extends PlaceHolderEnd { |
| + |
| + @Override |
| + public String generateOutput(boolean textOnly) { |
| + if (textOnly) { |
| + return ""; |
| + } |
| + return "</li>"; |
| + } |
| +} |