Exemplo n.º 1
0
 private static boolean hasHotFriendRight(int uid) {
   User user = null;
   try {
     user = SnsAdapterFactory.getUserAdapter().get(uid);
     threadLocalUser.set(user);
     return user.isStarUser();
   } catch (Exception e) {
     e.printStackTrace();
   }
   return false;
 }