Skip to content

Commit ea9b4be

Browse files
committed
fix PR
1 parent 8a2f3be commit ea9b4be

4 files changed

Lines changed: 0 additions & 16 deletions

File tree

.DS_Store

-10 KB
Binary file not shown.

claimManagement/.DS_Store

-10 KB
Binary file not shown.

claimManagement/src/.DS_Store

-8 KB
Binary file not shown.

claimManagement/src/main/java/org/openimis/imisclaims/SQLHandler.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -940,20 +940,4 @@ public void InsertHealthFacilities(String Id, String Code, String Name) {
940940
e.printStackTrace();
941941
}
942942
}
943-
944-
public String getHealthFacility(String code) {
945-
String hf = "";
946-
String query = "SELECT (Code ||' '|| Name) FROM tblHealthFacilities WHERE upper(Code) like '" + code.toUpperCase() + "'";
947-
try (Cursor cursor1 = db.rawQuery(query, null)) {
948-
// looping through all rows
949-
if (cursor1.moveToFirst()) {
950-
do {
951-
hf = cursor1.getString(0);
952-
} while (cursor1.moveToNext());
953-
}
954-
} catch (Exception e) {
955-
e.printStackTrace();
956-
}
957-
return hf;
958-
}
959943
}

0 commit comments

Comments
 (0)