This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-digester.git


The following commit(s) were added to refs/heads/master by this push:
     new b366c248 Javadoc and don't use FQCN in throws clause.
b366c248 is described below

commit b366c248b1edb29f46e469d7a22246738150f882
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 21 14:57:44 2022 -0400

    Javadoc and don't use FQCN in throws clause.
---
 .../java/org/apache/commons/digester3/examples/api/catalog/Main.java  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/examples/api/catalog/src/main/java/org/apache/commons/digester3/examples/api/catalog/Main.java
 
b/examples/api/catalog/src/main/java/org/apache/commons/digester3/examples/api/catalog/Main.java
index c3fdac7f..5e942f79 100644
--- 
a/examples/api/catalog/src/main/java/org/apache/commons/digester3/examples/api/catalog/Main.java
+++ 
b/examples/api/catalog/src/main/java/org/apache/commons/digester3/examples/api/catalog/Main.java
@@ -1,5 +1,7 @@
 package org.apache.commons.digester3.examples.api.catalog;
 
+import java.io.IOException;
+
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -202,7 +204,7 @@ public class Main
      * takes a File object would be more sensible (see AddressBook example).
      */
     private static java.io.Reader getInputData( final String filename )
-        throws java.io.IOException
+        throws IOException
     {
         final java.io.File srcfile = new java.io.File( filename );
 

Reply via email to