diff options
| author | Nino Breuer | 2014-12-11 12:26:08 +0100 |
|---|---|---|
| committer | Nino Breuer | 2014-12-11 12:26:08 +0100 |
| commit | c2bfef0cd3cc94f3207ab9aa6cb53199b0460589 (patch) | |
| tree | 9086894909812bb087a0ce5a7a2ada5fce5f4bc1 /dozentenmodulserver/src | |
| parent | [client] improved error handling of ShibboECP. (diff) | |
| download | tutor-module-c2bfef0cd3cc94f3207ab9aa6cb53199b0460589.tar.gz tutor-module-c2bfef0cd3cc94f3207ab9aa6cb53199b0460589.tar.xz tutor-module-c2bfef0cd3cc94f3207ab9aa6cb53199b0460589.zip | |
d
Diffstat (limited to 'dozentenmodulserver/src')
| -rw-r--r-- | dozentenmodulserver/src/main/java/sql/SQL.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dozentenmodulserver/src/main/java/sql/SQL.java b/dozentenmodulserver/src/main/java/sql/SQL.java index b7cb4ada..5a5071a9 100644 --- a/dozentenmodulserver/src/main/java/sql/SQL.java +++ b/dozentenmodulserver/src/main/java/sql/SQL.java @@ -55,6 +55,7 @@ public class SQL { log.info("Failed to return connection to Client.");
e.printStackTrace();
}
+
return null;
}
@@ -94,7 +95,7 @@ public class SQL { public int DeleteUser(String user) {
- Statement stm;
+ Statement stm = null;
try {
Connection con = getConnection();
stm = con.createStatement();
|
