@@ -116,7 +116,7 @@ public int read() throws IOException {
116116 IOException ioe = null ;
117117 try {
118118 result = super .read ();
119- } catch (IOException pException ) {
119+ } catch (final IOException pException ) {
120120 ioe = pException ;
121121 }
122122 if (ioe != null ) {
@@ -135,7 +135,7 @@ public int read(final byte[] pBuffer) throws IOException {
135135 IOException ioe = null ;
136136 try {
137137 result = super .read (pBuffer );
138- } catch (IOException pException ) {
138+ } catch (final IOException pException ) {
139139 ioe = pException ;
140140 }
141141 if (ioe != null ) {
@@ -154,7 +154,7 @@ public int read(final byte[] pBuffer, final int pOffset, final int pLength) thro
154154 IOException ioe = null ;
155155 try {
156156 result = super .read (pBuffer , pOffset , pLength );
157- } catch (IOException pException ) {
157+ } catch (final IOException pException ) {
158158 ioe = pException ;
159159 }
160160 if (ioe != null ) {
@@ -176,7 +176,7 @@ public int read(final byte[] pBuffer, final int pOffset, final int pLength) thro
176176 * passed down.
177177 */
178178 protected void noteDataBytes (final byte [] pBuffer , final int pOffset , final int pLength ) throws IOException {
179- for (Observer observer : getObservers ()) {
179+ for (final Observer observer : getObservers ()) {
180180 observer .data (pBuffer , pOffset , pLength );
181181 }
182182 }
@@ -186,7 +186,7 @@ protected void noteDataBytes(final byte[] pBuffer, final int pOffset, final int
186186 * passed down.
187187 */
188188 protected void noteFinished () throws IOException {
189- for (Observer observer : getObservers ()) {
189+ for (final Observer observer : getObservers ()) {
190190 observer .finished ();
191191 }
192192 }
@@ -198,7 +198,7 @@ protected void noteFinished() throws IOException {
198198 * passed down.
199199 */
200200 protected void noteDataByte (final int pDataByte ) throws IOException {
201- for (Observer observer : getObservers ()) {
201+ for (final Observer observer : getObservers ()) {
202202 observer .data (pDataByte );
203203 }
204204 }
@@ -211,7 +211,7 @@ protected void noteDataByte(final int pDataByte) throws IOException {
211211 * argument.
212212 */
213213 protected void noteError (final IOException pException ) throws IOException {
214- for (Observer observer : getObservers ()) {
214+ for (final Observer observer : getObservers ()) {
215215 observer .error (pException );
216216 }
217217 }
@@ -221,7 +221,7 @@ protected void noteError(final IOException pException) throws IOException {
221221 * passed down.
222222 */
223223 protected void noteClosed () throws IOException {
224- for (Observer observer : getObservers ()) {
224+ for (final Observer observer : getObservers ()) {
225225 observer .closed ();
226226 }
227227 }
@@ -238,7 +238,7 @@ public void close() throws IOException {
238238 IOException ioe = null ;
239239 try {
240240 super .close ();
241- } catch (IOException e ) {
241+ } catch (final IOException e ) {
242242 ioe = e ;
243243 }
244244 if (ioe == null ) {
0 commit comments