Skip to content

Commit

Permalink
Comment out unknown lint stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike C committed Nov 23, 2012
1 parent 508ca2b commit a9b24b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/cyanogenmod/filemanager/util/FileHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package com.cyanogenmod.filemanager.util;

import android.annotation.SuppressLint;
//import android.annotation.SuppressLint; //FIXME: What is this in ICS?
import android.content.Context;
import android.content.SharedPreferences;
import android.content.res.Resources;
Expand Down Expand Up @@ -161,7 +161,7 @@ public static String getHumanReadableSize(FileSystemObject fso) {
* @param size The size in bytes
* @return String The human readable size
*/
@SuppressLint("DefaultLocale")
//@SuppressLint("DefaultLocale") //FIXME: how to do this in ics
public static String getHumanReadableSize(long size) {
Resources res = FileManagerApplication.getInstance().getResources();
final String format = "%d %s"; //$NON-NLS-1$
Expand Down

0 comments on commit a9b24b5

Please sign in to comment.