Skip to content
Open
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
65f72a8
Add support for Gradle workflow
j-lum Aug 6, 2019
0112efe
Add sample checkstyle configuration
j-lum Aug 12, 2019
cfd6da7
Change file mode on `gradle` to be executable
j-lum Aug 18, 2019
6e6ace1
Merge pull request #12 from j-lum/gradle+x
j-lum Aug 18, 2019
a3ca5a4
Add configuration for console applications
j-lum Aug 20, 2019
7b60e81
Merge pull request #13 from j-lum/javaexec
j-lum Aug 21, 2019
6dfbb70
Level-1
Aug 26, 2019
87fb84e
Level-1
Aug 26, 2019
24796d0
Level-2
Aug 26, 2019
f302e6b
Level-2
Aug 26, 2019
e5ec66b
Level-3
Aug 26, 2019
76204fe
Level-4
Aug 27, 2019
9a81e57
Level-5
Aug 27, 2019
4ff446c
Level-6
Aug 27, 2019
a504967
Level-7
Aug 28, 2019
0ec0fe4
Level-8
Aug 28, 2019
1a541a9
Merge branch 'branch-Level-8'
Aug 28, 2019
e26dc70
Level-7 (removing a few print lines that I had put for debugging)
Aug 28, 2019
313de67
Merge branch 'master' into branch-Level-7
Aug 28, 2019
9559d8a
Level-8 (won't display error message if the date inputted by the uses…
Aug 28, 2019
35acea9
Merge branch 'branch-Level-8'
Aug 28, 2019
e8daed2
Making it more OOP
Sep 2, 2019
1c21635
Merge branch 'branch-Level-7'
Sep 2, 2019
8219d3d
A-MoreOOP
Sep 2, 2019
808d2dd
A-JUnit
Sep 2, 2019
e5b08a3
Level-9 (Now Able to Find Tasks!)
Sep 3, 2019
e56bf4d
A-JavaDoc (Added Java Doc for every class & every method)
Sep 3, 2019
dfe5277
A-CodingStandard (Changed the Access Modifier of some class variables…
Sep 3, 2019
16f1bda
Merge branch 'branch-A-CodingStandard' into master
Sep 3, 2019
5304e70
Merge branch 'branch-Level-9' into master
Sep 3, 2019
d9893cc
Merge branch 'gradle'
Sep 3, 2019
d708610
Fixed a bug (there was a merge conflict so it wasn't compiling)
Sep 3, 2019
0f9f7bd
Created my first GUI application! (a window that says Hello World)
Sep 4, 2019
2e58d6b
Created the GUI for Duke (but without any functionality)
Sep 4, 2019
59acd1a
Iteration 1 – Echoing the User
Sep 4, 2019
5131533
Iteration 2 – Adding Dialog Boxes
Sep 4, 2019
85bffc6
Duke GUI now responds to user input!
Sep 4, 2019
07298f9
Making JUnit work with Gradle (and adding more unit testing functions)
Sep 30, 2019
8f60f0f
Made the DialogBox have resizable width (through SceneBuilder) so tha…
Sep 30, 2019
acb5af9
Merge branch 'branch-Level-10'
Sep 30, 2019
8a19a8b
Added assert feature to document important assumptions that should ho…
Sep 30, 2019
e461b9a
Critically examined the code and refactored it to improve the code qu…
Sep 30, 2019
8d53e2c
Merge pull request #5 from eizon05/branch-A-CodeQuality
aang114 Sep 30, 2019
af61ae9
Merge branch 'master' into branch-A-Assertions
aang114 Sep 30, 2019
b54fc5f
Merge pull request #6 from eizon05/branch-A-Assertions
aang114 Sep 30, 2019
015f926
Add Ui.png
aang114 Sep 30, 2019
022e6c7
Update README.md
aang114 Sep 30, 2019
1360dee
Update README.md
aang114 Sep 30, 2019
540fb54
Update README.md
aang114 Sep 30, 2019
a966f0a
Update README.md
aang114 Sep 30, 2019
63aebb5
Update README.md
aang114 Sep 30, 2019
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
Prev Previous commit
Next Next commit
Level-7 (removing a few print lines that I had put for debugging)
  • Loading branch information
Karan Dev Sapra committed Aug 28, 2019
commit e26dc7061b6c9b7f25599a07a437aee93c196408
4 changes: 0 additions & 4 deletions src/main/java/Bot.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,8 @@ public void retrieve () throws FileNotFoundException {
while (s.hasNext()) {
String text = s.nextLine();

System.out.println(text);

String[] split = text.split(" \\| ");

System.out.println(Arrays.toString(split));

String description = split[2];

Task t = null;
Expand Down