Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cmpt-370-group-project-group26
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eyan Cunningham (esc568)
cmpt-370-group-project-group26
Commits
d21f69ca
Commit
d21f69ca
authored
3 years ago
by
Rafi Zereselasie (raz070)
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Removed shift type"
This reverts commit
c3032b36
parent
c3032b36
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.idea/runConfigurations.xml
+10
-0
10 additions, 0 deletions
.idea/runConfigurations.xml
SchedulerApp/src/main/java/com/example/schedulerapp/Model.java
+2
-2
2 additions, 2 deletions
...ulerApp/src/main/java/com/example/schedulerapp/Model.java
with
12 additions
and
2 deletions
.idea/runConfigurations.xml
0 → 100644
+
10
−
0
View file @
d21f69ca
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"RunConfigurationProducerService"
>
<option
name=
"ignoredProducers"
>
<set>
<option
value=
"com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer"
/>
</set>
</option>
</component>
</project>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
SchedulerApp/src/main/java/com/example/schedulerapp/Model.java
+
2
−
2
View file @
d21f69ca
...
@@ -78,8 +78,8 @@ public class Model {
...
@@ -78,8 +78,8 @@ public class Model {
return
"No Employees"
;
return
"No Employees"
;
}
}
void
addShift
(
int
id
,
String
date
,
int
start
,
int
end
){
void
addShift
(
int
id
,
String
date
,
int
start
,
int
end
,
String
shiftType
){
writer
.
println
(
"addShift/"
+
id
+
"/"
+
date
+
"/"
+
start
+
"/"
+
end
);
writer
.
println
(
"addShift/"
+
id
+
"/"
+
date
+
"/"
+
start
+
"/"
+
end
+
"/"
+
shiftType
);
}
}
void
removeShift
(
int
id
,
String
date
,
int
start
,
int
end
){
void
removeShift
(
int
id
,
String
date
,
int
start
,
int
end
){
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment