Index: core/src/main/java/org/apache/hcatalog/mapreduce/HCatOutputFormat.java =================================================================== --- core/src/main/java/org/apache/hcatalog/mapreduce/HCatOutputFormat.java (revision 1414882) +++ core/src/main/java/org/apache/hcatalog/mapreduce/HCatOutputFormat.java (working copy) @@ -58,7 +58,7 @@ private static boolean harRequested; /** - * @see org.apache.hcatalog.mapreduce.HCatOutputFormat#setOutput(org.apache.hadoop.conf.Configuration, OutputJobInfo) + * @see org.apache.hcatalog.mapreduce.HCatOutputFormat#setOutput(org.apache.hadoop.conf.Configuration, Credentials, OutputJobInfo) */ public static void setOutput(Job job, OutputJobInfo outputJobInfo) throws IOException { setOutput(job.getConfiguration(), job.getCredentials(), outputJobInfo); @@ -68,7 +68,8 @@ * Set the information about the output to write for the job. This queries the metadata server * to find the StorageHandler to use for the table. It throws an error if the * partition is already published. - * @param job the job object + * @param conf the Configuration object + * @param credentials the Credentials object * @param outputJobInfo the table output information for the job * @throws IOException the exception in communicating with the metadata server */ Index: core/src/main/java/org/apache/hcatalog/mapreduce/FileOutputFormatContainer.java =================================================================== --- core/src/main/java/org/apache/hcatalog/mapreduce/FileOutputFormatContainer.java (revision 1414882) +++ core/src/main/java/org/apache/hcatalog/mapreduce/FileOutputFormatContainer.java (working copy) @@ -123,10 +123,10 @@ new Table(jobInfo.getTableInfo().getTable())); } catch (MetaException e) { throw new IOException(e); + } catch (NoSuchObjectException e) { + throw new IOException(e); } catch (TException e) { throw new IOException(e); - } catch (NoSuchObjectException e) { - throw new IOException(e); } finally { HCatUtil.closeHiveClientQuietly(client); } Index: core/src/main/java/org/apache/hcatalog/common/HCatConstants.java =================================================================== --- core/src/main/java/org/apache/hcatalog/common/HCatConstants.java (revision 1414882) +++ core/src/main/java/org/apache/hcatalog/common/HCatConstants.java (working copy) @@ -45,9 +45,9 @@ /** * {@value} (default: null) - * When the property is set in the UDFContext of the {@link HCatStorer}, {@link HCatStorer} writes + * When the property is set in the UDFContext of the org.apache.hcatalog.pig.HCatStorer, HCatStorer writes * to the location it specifies instead of the default HCatalog location format. An example can be found - * in @{link HCatStorerWrapper}. + * in org.apache.hcatalog.pig.HCatStorerWrapper. */ public static final String HCAT_PIG_STORER_EXTERNAL_LOCATION = HCAT_PIG_STORER + ".external.location"; Index: build.xml =================================================================== --- build.xml (revision 1414882) +++ build.xml (working copy) @@ -168,6 +168,7 @@ + + + + + + + + Javadoc comments contain warnings.