Fixing broken javadoc
This commit is contained in:
parent
8fd446040b
commit
2dbecb0843
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue