comparison src/org/tmatesoft/hg/repo/HgChangelog.java @ 161:9423235ca77b

Record possible value (and knowledge source) for extras field
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 09 Mar 2011 13:34:50 +0100
parents d5268ca7715b
children f26ffe04ced0
comparison
equal deleted inserted replaced
160:7a8af814908b 161:9423235ca77b
106 private String user; 106 private String user;
107 private String comment; 107 private String comment;
108 private List<String> files; // unmodifiable collection (otherwise #files() and implicit #clone() shall be revised) 108 private List<String> files; // unmodifiable collection (otherwise #files() and implicit #clone() shall be revised)
109 private Date time; 109 private Date time;
110 private int timezone; 110 private int timezone;
111 // http://mercurial.selenic.com/wiki/PruningDeadBranches - Closing changesets can be identified by close=1 in the changeset's extra field.
111 private Map<String, String> extras; 112 private Map<String, String> extras;
112 113
113 /** 114 /**
114 * @see mercurial/changelog.py:read() 115 * @see mercurial/changelog.py:read()
115 * 116 *