From be93452842cfd18d7d738482175cfdbb128ed7dc Mon Sep 17 00:00:00 2001 From: Christian Halstrick Date: Thu, 7 Oct 2010 15:58:34 +0200 Subject: [PATCH] Remove wrong comment in MergeCommand There was a wrong javadoc comment telling that MergeCommand only supports fast-forward merges. This has been fixed. Change-Id: I7edea779a83528beee34a1753026288c384881ce Signed-off-by: Christian Halstrick --- org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java index c636ff7ff..ae13c9640 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/MergeCommand.java @@ -82,9 +82,6 @@ * supported options and arguments of this command and a {@link #call()} method * to finally execute the command. Each instance of this class should only be * used for one invocation of the command (means: one call to {@link #call()}) - *

- * This is currently a very basic implementation which takes only one commits to - * merge with as option. Furthermore it does supports only fast forward. * * @see Git documentation about Merge