Skip to content
Snippets Groups Projects
Commit 9f29ecdc authored by Piotr Gawron's avatar Piotr Gawron
Browse files

subject renamed to patient

parent 534e16ad
No related branches found
No related tags found
1 merge request!1Appointments dev
......@@ -153,7 +153,7 @@ public class PrcFlyingParser extends SubjectParser {
if (name.indexOf("(c)") >= 0 || name.indexOf("©") >= 0) {
return SubjectType.CONTROL;
} else {
return SubjectType.SUBJECT;
return SubjectType.PATIENT;
}
}
......
......@@ -136,7 +136,7 @@ public class PrcSubjectsParser extends SubjectParser {
@Override
protected SubjectType parseType(Row row) {
return SubjectType.SUBJECT;
return SubjectType.PATIENT;
}
@Override
......
package smash.appointment.parse;
public enum SubjectType {
SUBJECT, CONTROL;
PATIENT, CONTROL;
}
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