comparison src/org/tmatesoft/hg/repo/HgTags.java @ 424:6437d261048a

Deprecated code removed
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 28 Mar 2012 15:42:15 +0200
parents 9c9c442b5f2e
children 909306e412e2
comparison
equal deleted inserted replaced
423:9c9c442b5f2e 424:6437d261048a
181 if ((l = globalFromName.get(tagName)) != null) { 181 if ((l = globalFromName.get(tagName)) != null) {
182 rv.addAll(l); 182 rv.addAll(l);
183 } 183 }
184 return rv; 184 return rv;
185 } 185 }
186
187 /**
188 * @deprecated use {@link #getAllTags()} instead
189 */
190 @Deprecated
191 public Map<String, TagInfo> getTags() {
192 return getAllTags();
193 }
194 186
195 /** 187 /**
196 * All tag entries from the repository, for both active and removed tags 188 * All tag entries from the repository, for both active and removed tags
197 */ 189 */
198 public Map<String, TagInfo> getAllTags() { 190 public Map<String, TagInfo> getAllTags() {