How would i exclude inputStream.close() from jacoco code coverage, in pom.xml or in the java code?
public void run() {
    InputStream inputStream = null;
    try {
        inputStream = fileSystem.newFileInputStream(file);
    }
    finally {
        if(inputStream != null) {
            try {
                inputStream.close();
            } catch (IOException e) {}
        }
    }
}
 
     
     
     
     
    