comparison src/org/tmatesoft/hg/internal/Patch.java @ 419:7f136a3fa671

Clean javadoc to fix obvious warnings
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 22 Mar 2012 21:36:41 +0100
parents 9747a786a34d
children 6c22bdc0bdfd
comparison
equal deleted inserted replaced
418:528b6780a8bd 419:7f136a3fa671
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 *
19 import java.io.IOException; 19 import java.io.IOException;
20 import java.util.ArrayList; 20 import java.util.ArrayList;
21 import java.util.Formatter; 21 import java.util.Formatter;
22 22
23 /** 23 /**
24 * @see http://mercurial.selenic.com/wiki/BundleFormat, in Changelog group description 24 * @see http://mercurial.selenic.com/wiki/BundleFormat
25 * in Changelog group description
25 * 26 *
26 * range [start..end] in original source gets replaced with data of length (do not keep, use data.length instead) 27 * range [start..end] in original source gets replaced with data of length (do not keep, use data.length instead)
27 * range [end(i)..start(i+1)] is copied from the source 28 * range [end(i)..start(i+1)] is copied from the source
28 * 29 *
29 * @author Artem Tikhomirov 30 * @author Artem Tikhomirov