diff options
author | Shawn Pearce <spearce@spearce.org> | 2013-03-18 07:44:48 -0700 |
---|---|---|
committer | Shawn Pearce <spearce@spearce.org> | 2013-03-18 09:30:43 -0700 |
commit | f32b8612433e499090c76ded014dd5e94322b786 (patch) | |
tree | 775440020e0b1d60d8cd86b027c9bebf487caa54 /org.eclipse.jgit.ant/src | |
parent | 462bbc052e766ee9ea585cd4366165a8dac86496 (diff) | |
download | jgit-f32b8612433e499090c76ded014dd5e94322b786.tar.gz jgit-f32b8612433e499090c76ded014dd5e94322b786.zip |
JGit 3.0: move internal classes into an internal subpackage
This breaks all existing callers once. Applications are not supposed
to build against the internal storage API unless they can accept API
churn and make necessary updates as versions change.
Change-Id: I2ab1327c202ef2003565e1b0770a583970e432e9
Diffstat (limited to 'org.eclipse.jgit.ant/src')
-rw-r--r-- | org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitAddTask.java | 2 | ||||
-rw-r--r-- | org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitCheckoutTask.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitAddTask.java b/org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitAddTask.java index ebc48ba160..c76ae2af8c 100644 --- a/org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitAddTask.java +++ b/org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitAddTask.java @@ -53,9 +53,9 @@ import org.apache.tools.ant.types.FileSet; import org.apache.tools.ant.types.resources.Union; import org.eclipse.jgit.api.AddCommand; import org.eclipse.jgit.api.Git; +import org.eclipse.jgit.storage.file.FileRepositoryBuilder; import org.eclipse.jgit.lib.Repository; import org.eclipse.jgit.lib.RepositoryCache; -import org.eclipse.jgit.storage.file.FileRepositoryBuilder; import org.eclipse.jgit.util.FS; /** diff --git a/org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitCheckoutTask.java b/org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitCheckoutTask.java index a40dc2e9f6..14c4bc5700 100644 --- a/org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitCheckoutTask.java +++ b/org.eclipse.jgit.ant/src/org/eclipse/jgit/ant/tasks/GitCheckoutTask.java @@ -54,7 +54,7 @@ import org.eclipse.jgit.storage.file.FileRepositoryBuilder; /** * Checkout a branch or paths to the working tree. - * + * * @see <a * href="http://www.kernel.org/pub/software/scm/git/docs/git-checkout.html" * >git-checkout(1)</a> |