Fix some javadoc warnings

This commit is contained in:
Daniel Martí 2015-09-11 15:47:38 -07:00
parent 9cbefca4bb
commit 0c9c93e493
4 changed files with 1 additions and 9 deletions

View File

@ -629,7 +629,7 @@ public final class Utils {
} }
/** /**
* Remove all files from the {@parm directory} either beginning with {@param startsWith} * Remove all files from the {@param directory} either beginning with {@param startsWith}
* or ending with {@param endsWith}. Note that if the SD card is not ready, then the * or ending with {@param endsWith}. Note that if the SD card is not ready, then the
* cache directory will probably not be available. In this situation no files will be * cache directory will probably not be available. In this situation no files will be
* deleted (and thus they may still exist after the SD card becomes available). * deleted (and thus they may still exist after the SD card becomes available).

View File

@ -33,7 +33,6 @@ public abstract class FDroidProvider extends ContentProvider {
/** /**
* Should always be the same as the provider:name in the AndroidManifest * Should always be the same as the provider:name in the AndroidManifest
* @return
*/ */
public final String getName() { public final String getName() {
return AUTHORITY + "." + getProviderName(); return AUTHORITY + "." + getProviderName();
@ -44,7 +43,6 @@ public abstract class FDroidProvider extends ContentProvider {
* decide not to notify the content resolver of changes, * decide not to notify the content resolver of changes,
* every single time we do something during many operations. * every single time we do something during many operations.
* Based on http://stackoverflow.com/a/15886915. * Based on http://stackoverflow.com/a/15886915.
* @return
*/ */
protected final boolean isApplyingBatch() { protected final boolean isApplyingBatch() {
return this.isApplyingBatch; return this.isApplyingBatch;

View File

@ -46,7 +46,6 @@ public class HttpDownloader extends Downloader {
/** /**
* Calling this makes this downloader not download a file. Instead, it will * Calling this makes this downloader not download a file. Instead, it will
* only stream the file through the {@link HttpDownloader#getInputStream()} * only stream the file through the {@link HttpDownloader#getInputStream()}
* @return
*/ */
public HttpDownloader streamDontDownload() { public HttpDownloader streamDontDownload() {
onlyStream = true; onlyStream = true;

View File

@ -91,11 +91,6 @@ public class CanUpdateAppsFragment extends AppListFragment {
* Copied from ListFragment and added Button on top of list. We do not use a * Copied from ListFragment and added Button on top of list. We do not use a
* custom layout here, because this breaks the progress bar functionality of * custom layout here, because this breaks the progress bar functionality of
* ListFragment. * ListFragment.
*
* @param inflater
* @param container
* @param savedInstanceState
* @return
*/ */
@Override @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {