comparison test/org/tmatesoft/hg/test/OutputParser.java @ 202:706bcc7cfee4

Basic test for HgIncomingCommand. Fix RepositoryComparator for cases when whole repository is unknown. Respect freshly initialized (empty) repositories in general.
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 26 Apr 2011 02:50:06 +0200
parents a3a2e5deb320
children 66fd2c73c56f
comparison
equal deleted inserted replaced
201:a736f42ed75b 202:706bcc7cfee4
22 * @author TMate Software Ltd. 22 * @author TMate Software Ltd.
23 */ 23 */
24 public interface OutputParser { 24 public interface OutputParser {
25 25
26 public void parse(CharSequence seq); 26 public void parse(CharSequence seq);
27
28 public class Stub implements OutputParser {
29 public void parse(CharSequence seq) {
30 // no-op
31 }
32 }
27 } 33 }