Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove AB-3 remnants #146

Merged
merged 1 commit into from
Mar 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/_sass/minima/skins/classic.scss

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ $brand-color: #828282 !default;
$brand-color-light: lighten($brand-color, 40%) !default;
$brand-color-dark: darken($brand-color, 25%) !default;

$text-color: #111 !default;
$background-color: #fdfdfd !default;
$code-background-color: #eef !default;
$text-color: #fdfdfd !default;
$background-color: #111 !default;
$code-background-color: #eff !default;

$link-base-color: #2a7ae2 !default;
$link-visited-color: darken($link-base-color, 15%) !default;
Expand Down
227 changes: 0 additions & 227 deletions src/main/java/seedu/address/logic/commands/EditCommand.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import seedu.address.logic.parser.exceptions.ParseException;
import seedu.address.model.category.Category;
import seedu.address.model.expense.Expense;
import seedu.address.model.person.Price;
import seedu.address.model.expense.Price;

/**
* Parses input arguments and creates a new AddExpenseCommand object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
import seedu.address.logic.commands.AddRecurringExpenseCommand;
import seedu.address.logic.parser.exceptions.ParseException;
import seedu.address.model.category.Category;
import seedu.address.model.expense.Price;
import seedu.address.model.expense.RecurringExpenseManager;
import seedu.address.model.expense.RecurringExpenseType;
import seedu.address.model.person.Price;

/**
* Parses input arguments and creates a new AddCategoryCommand object
Expand Down
82 changes: 0 additions & 82 deletions src/main/java/seedu/address/logic/parser/EditCommandParser.java

This file was deleted.

Loading