comparison src/org/tmatesoft/hg/core/HgManifestCommand.java @ 468:3ca4ae7bdd38 v1.0.0

Clean experimental marks and deprecation code. Update version number to release
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 11 Jul 2012 17:48:17 +0200
parents d78cb5ca3053
children 78a9e26e670d
comparison
equal deleted inserted replaced
467:51d682cf9cdc 468:3ca4ae7bdd38
101 } catch (HgInvalidRevisionException ex) { 101 } catch (HgInvalidRevisionException ex) {
102 throw new HgBadArgumentException("Can't find revision", ex).setRevision(nid); 102 throw new HgBadArgumentException("Can't find revision", ex).setRevision(nid);
103 } 103 }
104 } 104 }
105 105
106 /**
107 * @deprecated confusing whether it's changeset or manifest own revision index in use, use {@link #changeset(int)} instead
108 */
109 @Deprecated
110 public HgManifestCommand revision(int rev) {
111 return changeset(rev);
112 }
113
114 public HgManifestCommand dirs(boolean include) { 106 public HgManifestCommand dirs(boolean include) {
115 // XXX whether directories with directories only are include or not 107 // XXX whether directories with directories only are include or not
116 // now lists only directories with files 108 // now lists only directories with files
117 needDirs = include; 109 needDirs = include;
118 return this; 110 return this;