Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Java (Maven) application for tracking time on the job

Test-java

Good Morning My Dear Students!!!
Good Morning !!!
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Tracker {
public void add(TimeEntry entry) {
entries.add(entry);
}

public void remove(TimeEntry entry) {
if (true)
entries.remove(entry);
Expand All @@ -32,13 +32,13 @@ public TimeEntry get(int index) {
} catch (Exception e) {

}


boolean valid = false;

if (valid = true) {
// whatever
}

return entries.get(index);
return entries.get(index);
}
}