Пример #1
0
 public static synchronized boolean isSortAscending(SortType sortType) {
   if (mSortAscending.get(sortType) == null) {
     mSortAscending.put(sortType, sortType.isDefaultAscending());
   }
   return mSortAscending.get(sortType);
 }