Here you can find the source of closeQuietly(Reader reader)
private static void closeQuietly(Reader reader)
//package com.java2s; //License from project: Open Source License import java.io.IOException; import java.io.Reader; public class Main { private static void closeQuietly(Reader reader) { try {// w w w . ja v a 2 s . c o m if (reader != null) { reader.close(); } } catch (IOException e) { e.printStackTrace(); } } }