From b96d2f8222e3822b34f2424c40946749dd9d58ab Mon Sep 17 00:00:00 2001
From: mjw11 <mjw11@illinois.edu>
Date: Sat, 21 Nov 2020 07:00:42 -0600
Subject: [PATCH] Remove unnecessary parameter

---
 iTrust/src/edu/ncsu/csc/itrust/dao/mysql/PatientDAO.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iTrust/src/edu/ncsu/csc/itrust/dao/mysql/PatientDAO.java b/iTrust/src/edu/ncsu/csc/itrust/dao/mysql/PatientDAO.java
index 1ff702c..905f024 100644
--- a/iTrust/src/edu/ncsu/csc/itrust/dao/mysql/PatientDAO.java
+++ b/iTrust/src/edu/ncsu/csc/itrust/dao/mysql/PatientDAO.java
@@ -103,7 +103,7 @@ public class PatientDAO {
 	 * @throws ITrustException
 	 * @throws DBException
 	 */
-	public String getRole(long mid, String role) throws ITrustException, DBException {
+	public String getRole(long mid) throws ITrustException, DBException {
 		Connection conn = null;
 		PreparedStatement ps = null;
 		try {
-- 
GitLab