Show
Ignore:
Timestamp:
07/03/08 17:19:35 (5 months ago)
Author:
daisuke_m
Message:

refactor

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • platform/eclipse/sabotter/trunk/jp.xet.sabotter.eclipse/src/jp/xet/sabotter/eclipse/manager/TagManager.java

    r15092 r15107  
    1919         */ 
    2020        public static String[] getTags(MiniblogUser user) { 
    21                 String[] tags = tagMap.get(user.getScreenName()); 
     21                String[] tags = tagMap.get(user.getUserId()); 
    2222                return tags == null ? new String[0] : tags; 
    2323        } 
     
    2828         */ 
    2929        public static void setTags(MiniblogUser user, String[] tags) { 
    30                 tagMap.put(user.getScreenName(), tags); 
     30                tagMap.put(user.getUserId(), tags); 
    3131        } 
    3232