| 123456789101112131415161718192021 |
- package rocks.zipcode;
-
- import java.io.IOException;
-
- /**
- * @author leon on 18/11/2018.
- */
- public class SpecialCharDocument extends Document {
- public SpecialCharDocument(String fileName) throws IOException {
- super(fileName);
- }
-
- @Override
- public void write(String contentToBeWritten) {
- }
-
- private Boolean isSpecialCharacters(String s) {
- return null;
- }
- }
|