FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/MacOSXDefaults.java [34:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   public File getFlashPlayerUserTrustDirectory()
   {
      File file = null;
      
      String home = System.getenv("HOME");
      if(home != null && !home.equals(""))
      {
         file = new File(home + "/Library/Preferences/Macromedia/Flash Player/#Security/FlashPlayerTrust/");
      }
      
      return file;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



FlexUnit4AntTasks/src/org/flexunit/ant/launcher/platforms/LinuxDefaults.java [34:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   public File getFlashPlayerUserTrustDirectory()
   {
      File file = null;
      
      String home = System.getenv("HOME");
      if(home != null && !home.equals(""))
      {
         file = new File(home + "/.macromedia/Flash_Player/#Security/FlashPlayerTrust/");
      }
      
      return file;
   }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



