comparison src/org/tmatesoft/hg/internal/GeneratePatchInspector.java @ 703:7839ff0bfd78

Refactor: move diff/blame related code to a separate package
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 14 Aug 2013 14:51:51 +0200
parents 4ea0351ca878
children
comparison
equal deleted inserted replaced
702:992fa84e7885 703:7839ff0bfd78
14 * the terms of a license other than GNU General Public License 14 * the terms of a license other than GNU General Public License
15 * contact TMate Software at support@hg4j.com 15 * contact TMate Software at support@hg4j.com
16 */ 16 */
17 package org.tmatesoft.hg.internal; 17 package org.tmatesoft.hg.internal;
18 18
19 import org.tmatesoft.hg.internal.DiffHelper.DeltaInspector; 19 import org.tmatesoft.hg.internal.diff.DiffHelper;
20 import org.tmatesoft.hg.internal.DiffHelper.LineSequence; 20 import org.tmatesoft.hg.internal.diff.DiffHelper.DeltaInspector;
21 import org.tmatesoft.hg.internal.diff.DiffHelper.LineSequence;
21 22
22 class GeneratePatchInspector extends DeltaInspector<LineSequence> { 23 class GeneratePatchInspector extends DeltaInspector<LineSequence> {
23 private final Patch deltaCollector; 24 private final Patch deltaCollector;
24 25
25 GeneratePatchInspector(Patch p) { 26 GeneratePatchInspector(Patch p) {