]> source.dussan.org Git - sonarqube.git/blob
7a2af0171f8e8e2c6f1f0198e5ebe4081cb91565
[sonarqube.git] /
1 package org.sonar.tests;
2
3 import java.sql.Connection;
4
5 public class ConnectionIsClosed {
6
7   public void connectionIsClosed() throws Exception {
8     Connection c = getConnection();
9     try {
10       // do stuff
11       c.commit();
12
13     } finally {
14       c.close();
15     }
16   }
17
18   protected Connection getConnection() {
19     return null;
20   }
21 }