Skip to content

Tags: jamietan2002/ip

Tags

A-Release

Toggle A-Release's commit message
Fix storage update bug

A-BetterGui

Toggle A-BetterGui's commit message
Improve GUI

C-BetterSearch

Toggle C-BetterSearch's commit message
Add better search function

BCD-Extension

Toggle BCD-Extension's commit message
Merge branch 'branch-C-BetterSearch'

Add Better Search function

A-FullCommitMessage

Toggle A-FullCommitMessage's commit message
Add assertions to Parser methods

There are a few methods in Parser that will be invalid if the user
inputs are not in the correct format.

Using assertions to define assumptions about the program state so that the runtime can verify them allows bugs in the code to be detected.

Let's define assertions to ensure that assumptions in the program are
not violate.

A-CodeQuality

Toggle A-CodeQuality's commit message
Improve code quality

There are redundant comments and code duplication.

Improving code quality is important to make the code more understandable
so that it can be read, understood and modified by other developers.

Lets
* remove redundant comments
* minimize code duplication
* format Javadocs to follow coding standards

A-Assertions

Toggle A-Assertions's commit message
Add assertions to Parser methods

There are a few methods in Parser that will be invalid if the user
inputs are not in the correct format.

Using assertions to define assumptions about the program state so that the runtime can verify them allows bugs in the code to be detected.

Let's define assertions to ensure that assumptions in the program are
not violate.

Level-10

Toggle Level-10's commit message
Add GUI

Level-9

Toggle Level-9's commit message
Add find command

A-JavaDoc

Toggle A-JavaDoc's commit message
Add JavaDocs