src/main/java/com/awsblog/queueing/utils/FileUtils.java [51:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		ByteArrayOutputStream buf = null;

		try (BufferedInputStream bis = new BufferedInputStream(new FileInputStream(fileName))) {
			buf = new ByteArrayOutputStream();
			
			int result = bis.read();
			
			while(result != -1) {
				buf.write((byte) result);
				result = bis.read();
			}
			
			buf.close();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/awsblog/queueing/utils/FileUtils.java [84:97]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		ByteArrayOutputStream buf = null;

		try (BufferedInputStream bis = new BufferedInputStream(new FileInputStream(fileName))) {

			buf = new ByteArrayOutputStream();

			int result = bis.read();
			
			while(result != -1) {
				buf.write((byte) result);
				result = bis.read();
			}
			
			buf.close();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



