]> source.dussan.org Git - sonarqube.git/blob
464380617125fa08fefd38b1490a512c147de679
[sonarqube.git] /
1 package org.sonar.tests;
2
3 public class ResourceIsNotClosed {
4
5   public void resourceIsNotStopped() throws Exception {
6     CloseableResource resource = new CloseableResource();
7     try {
8       resource.init();
9
10     } finally {
11       //resource.stop();
12     }
13   }
14 }