comparison src/org/tmatesoft/hg/core/HgBadArgumentException.java @ 525:0be5be8d57e9

Repository checkout support, first iteration
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 11 Jan 2013 18:12:39 +0100
parents 31a89587eb04
children
comparison
equal deleted inserted replaced
524:57b2c9eb3c69 525:0be5be8d57e9
1 /* 1 /*
2 * Copyright (c) 2011 TMate Software Ltd 2 * Copyright (c) 2011-2012 TMate Software Ltd
3 * 3 *
4 * This program is free software; you can redistribute it and/or modify 4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by 5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License. 6 * the Free Software Foundation; version 2 of the License.
7 * 7 *
38 @Override 38 @Override
39 public HgBadArgumentException setRevision(Nodeid r) { 39 public HgBadArgumentException setRevision(Nodeid r) {
40 super.setRevision(r); 40 super.setRevision(r);
41 return this; 41 return this;
42 } 42 }
43
44 @Override
45 public HgBadArgumentException setRevisionIndex(int rev) {
46 super.setRevisionIndex(rev);
47 return this;
48 }
43 } 49 }