Skip to content

Commit

Permalink
Revert changes to base code – No.2
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmaisch committed Apr 2, 2024
1 parent 50b83ea commit 1acd991
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/src/main/java/de/jplag/Submission.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public class Submission implements Comparable<Submission> {

private Map<File, Integer> fileTokenCount;


/**
* Creates a submission.
* @param name Identification of the submission (directory or filename).
Expand Down
2 changes: 2 additions & 0 deletions language-api/src/main/java/de/jplag/Language.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public interface Language {
* Parses a set of files. Override this method, if you don't require normalization.
* @param files are the files to parse.
* @return the list of parsed JPlag tokens.
* @throws ParsingException if an error during parsing the files occurred.
* @deprecated Replaced by {@link #parse(Set, boolean)}
*/
@Deprecated(forRemoval = true)
Expand All @@ -47,6 +48,7 @@ default List<Token> parse(Set<File> files) throws ParsingException {
* @param files are the files to parse.
* @param normalize True, if the tokens should be normalized
* @return the list of parsed JPlag tokens.
* @throws ParsingException if an error during parsing the files occurred.
*/
List<Token> parse(Set<File> files, boolean normalize) throws ParsingException;

Expand Down

0 comments on commit 1acd991

Please sign in to comment.