12345678910111213141516171819202122232425 |
- /*
- * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
- *
- */
- package scot.carricksoftware.grantswriter.writer.latex;
- import org.springframework.stereotype.Component;
- import scot.carricksoftware.grantswriter.constants.LatexConstants;
- import scot.carricksoftware.grantswriter.writer.FileWriter;
- @Component
- public class LatexDocumentEndImpl implements LatexDocumentEnd {
- private final FileWriter fileWriter;
- public LatexDocumentEndImpl(FileWriter fileWriter) {
- this.fileWriter = fileWriter;
- }
- @Override
- public void write() {
- fileWriter.writeLine(LatexConstants.DOCUMENT_END);
- }
- }
|