Fixing broken javadoc

This commit is contained in:
Joakim Erdfelt 2016-05-03 11:23:10 -07:00
parent 8fd446040b
commit 2dbecb0843
5 changed files with 8 additions and 7 deletions

View File

@ -452,7 +452,7 @@ public class MultiPartInputStreamParser
/**
* Throws an exception if one has been latched.
*
* @throws IOException
* @throws IOException the exception (if present)
*/
protected void throwIfError ()
throws IOException

View File

@ -596,7 +596,7 @@ public class Scanner extends AbstractLifeCycle
/**
* Report a file addition to the registered FileAddedListeners
* @param filename
* @param filename the filename
*/
private void reportAddition (String filename)
{
@ -623,7 +623,7 @@ public class Scanner extends AbstractLifeCycle
/**
* Report a file removal to the FileRemovedListeners
* @param filename
* @param filename the filename
*/
private void reportRemoval (String filename)
{
@ -650,7 +650,7 @@ public class Scanner extends AbstractLifeCycle
/**
* Report a file change to the FileChangedListeners
* @param filename
* @param filename the filename
*/
private void reportChange (String filename)
{

View File

@ -155,7 +155,6 @@ public abstract class Resource implements ResourceFactory, Closeable
* @param useCaches controls URLConnection caching
* @return A Resource object.
* @throws MalformedURLException Problem accessing URI
* @throws IOException Problem handling resource as file.
*/
public static Resource newResource(String resource, boolean useCaches)
throws MalformedURLException

View File

@ -103,6 +103,8 @@ public interface ExecutionStrategy
}
/**
* @param producer the execution strategy producer
* @param executor the execution strategy executor
* @deprecated use {@code getDefault().newExecutionStrategy(Producer, Executor)} instead
*/
@Deprecated

View File

@ -122,7 +122,7 @@ public class MultiMapTest
}
/**
* Tests {@link MultiMap#putValues(String, String...)}
* Tests {@link MultiMap#putValues(String, Object[])}
*/
@Test
public void testPutValues_StringArray()
@ -138,7 +138,7 @@ public class MultiMapTest
}
/**
* Tests {@link MultiMap#putValues(String, String...)}
* Tests {@link MultiMap#putValues(String, List)}
*/
@Test
public void testPutValues_VarArgs()