Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1.       if(doesExist)
  2.       {
  3.       // add the new configuration file to the list
  4.         if(!mruCFGFileList_.contains(path)){
  5.             // in case persistant data is inconsistent
  6.             if( 6 <= mruCFGFileList_.size() ) {
  7.                 mruCFGFileList_.remove(mruCFGFileList_.size()-2);
  8.             }
  9.             mruCFGFileList_.add(0, path);
  10.         }
  11.       }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement