mirror of
				https://github.com/commons-app/apps-android-commons.git
				synced 2025-10-31 06:43:56 +01:00 
			
		
		
		
	Fixes to some errors found by lint ("Inspect code" on Android Studio)
See also #171.
This commit is contained in:
		
							parent
							
								
									7dd512b2d9
								
							
						
					
					
						commit
						41ffd993d1
					
				
					 3 changed files with 3 additions and 4 deletions
				
			
		|  | @ -149,7 +149,7 @@ public class UploadService extends HandlerService<Contribution> { | |||
| 
 | ||||
|     @Override | ||||
|     public int onStartCommand(Intent intent, int flags, int startId) { | ||||
|         if(intent.getAction() == ACTION_START_SERVICE && freshStart) { | ||||
|         if(intent.getAction().equals(ACTION_START_SERVICE) && freshStart) { | ||||
|             ContentValues failedValues = new ContentValues(); | ||||
|             failedValues.put(Contribution.Table.COLUMN_STATE, Contribution.STATE_FAILED); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Yusuke Matsubara
						Yusuke Matsubara