本文整理了Java中difflib.Patch.restore()
方法的一些代码示例,展示了Patch.restore()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Patch.restore()
方法的具体详情如下:
包路径:difflib.Patch
类名称:Patch
方法名:restore
[英]Restore the text to original. Opposite to applyTo() method.
[中]将文本还原为原始文本。与applyTo()方法相反。
代码示例来源:origin: com.custardsource.dybdob/java-diff-utils-copy
/**
* Unpatch the revised text for a given patch
*
* @param revised the revised text
* @param patch the given patch
* @return the original text
*/
public static List<?> unpatch(List<?> revised, Patch patch) {
return patch.restore(revised);
}
代码示例来源:origin: com.googlecode.java-diff-utils/diffutils
/**
* Unpatch the revised text for a given patch
*
* @param revised
* the revised text
* @param patch
* the given patch
* @return the original text
*/
public static <T> List<T> unpatch(List<T> revised, Patch<T> patch) {
return patch.restore(revised);
}
内容来源于网络,如有侵权,请联系作者删除!