Skip to content

Commit

Permalink
Merge pull request #522 from yixiann/code-quality
Browse files Browse the repository at this point in the history
Add reposense @@author tag
  • Loading branch information
RichDom2185 authored Nov 6, 2022
2 parents 13851c6 + 069dde8 commit a88c572
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/foodrem/commons/core/Version.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* @@author */
package seedu.foodrem.commons.core;

import java.util.regex.Matcher;
Expand All @@ -8,7 +9,6 @@

/**
* Represents a version with major, minor and patch number
* @author
*/
public class Version implements Comparable<Version> {
private static final String VERSION_REGEX = "V(\\d+)\\.(\\d+)\\.(\\d+)(ea)?";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/foodrem/model/UserPrefs.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* @@author */
package seedu.foodrem.model;

import static java.util.Objects.requireNonNull;
Expand All @@ -10,7 +11,6 @@

/**
* Represents User's preferences.
* @author
*/
public class UserPrefs implements ReadOnlyUserPrefs {
private GuiSettings guiSettings = new GuiSettings();
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/seedu/foodrem/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* @@author */
package seedu.foodrem.model.util;

import java.util.HashSet;
Expand All @@ -17,8 +18,6 @@

/**
* Contains utility methods for populating {@code FoodRem} with sample data.
*
* @author
*/
public class SampleDataUtil {
public static Item[] getSampleItems() {
Expand Down
3 changes: 1 addition & 2 deletions src/test/java/seedu/foodrem/testutil/ItemsToSort.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* @@author */
package seedu.foodrem.testutil;

import java.util.ArrayList;
Expand All @@ -8,8 +9,6 @@

/**
* A utility class containing a list of {@code item} objects to be used in tests related to sorting.
*
* @author
*/
public class ItemsToSort {
public static final Item NI_Q1_U114_B119_E18_P13_R3 = new ItemBuilder().withItemName("NI Q1 U114 B119 E18 P13 R3")
Expand Down

0 comments on commit a88c572

Please sign in to comment.