Procházet zdrojové kódy

findbugs: rename IDE generated parameter names

AndyScherzinger před 6 roky
rodič
revize
28d29b17df

+ 2 - 2
src/main/java/com/owncloud/android/files/services/FileDownloader.java

@@ -221,11 +221,11 @@ public class FileDownloader extends Service
     /**
      * Provides a binder object that clients can use to perform operations on the queue of downloads,
      * excepting the addition of new files.
-     * <p/>
+     *
      * Implemented to perform cancellation, pause and resume of existing downloads.
      */
     @Override
-    public IBinder onBind(Intent arg0) {
+    public IBinder onBind(Intent intent) {
         return mBinder;
     }
 

+ 1 - 1
src/main/java/com/owncloud/android/files/services/FileUploader.java

@@ -736,7 +736,7 @@ public class FileUploader extends Service
      * uploads.
      */
     @Override
-    public IBinder onBind(Intent arg0) {
+    public IBinder onBind(Intent intent) {
         return mBinder;
     }