diff src/org/tmatesoft/hg/repo/HgTags.java @ 490:b3c16d1aede0

Refactoring: move HgRepository's implementation aspects to Internals (which is now its imlementation counterpart and primary repository class to be used by other parts of the library)
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 16 Aug 2012 17:08:34 +0200
parents 909306e412e2
children d9c07e1432c4
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgTags.java	Mon Aug 13 19:24:29 2012 +0200
+++ b/src/org/tmatesoft/hg/repo/HgTags.java	Thu Aug 16 17:08:34 2012 +0200
@@ -109,7 +109,7 @@
 				continue;
 			}
 			if (line.length() < 40+2 /*nodeid, space and at least single-char tagname*/) {
-				repo.getContext().getLog().dump(getClass(), Warn, "Bad tags line: %s", line); 
+				repo.getSessionContext().getLog().dump(getClass(), Warn, "Bad tags line: %s", line); 
 				continue;
 			}
 			int spacePos = line.indexOf(' ');
@@ -153,7 +153,7 @@
 				}
 				
 			} else {
-				repo.getContext().getLog().dump(getClass(), Warn, "Bad tags line: %s", line);
+				repo.getSessionContext().getLog().dump(getClass(), Warn, "Bad tags line: %s", line);
 			}
 		}
 	}