private static final String POLICY_ALWAYS_NEW_CLIENT = "always new client";
 
     private static Context mContext;
-    
-    // TODO better place
+
     private static boolean mOnlyOnDevice = false;
 
     
     public static String getLogName() {
         return getAppContext().getResources().getString(R.string.log_name);
     }
-    
+
     public static void showOnlyFilesOnDevice(boolean state){
         mOnlyOnDevice = state;
     }
-    
+
     public static boolean getOnlyOnDevice(){
         return mOnlyOnDevice;
     }