Skip to content
Snippets Groups Projects
Commit d21f69ca authored by Rafi Zereselasie (raz070)'s avatar Rafi Zereselasie (raz070)
Browse files

Revert "Removed shift type"

This reverts commit c3032b36
parent c3032b36
No related branches found
No related tags found
No related merge requests found
<?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
...@@ -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){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment