diff options
author | Shawn Pearce <spearce@spearce.org> | 2014-03-03 10:37:06 -0800 |
---|---|---|
committer | Shawn Pearce <spearce@spearce.org> | 2014-03-03 10:37:06 -0800 |
commit | fc8ff50e1a4bc6e84146e11c62fd6a8fb3731b91 (patch) | |
tree | 98c9598925bbf314a9131ab93376c9519ee0be24 /org.eclipse.jgit.pgm | |
parent | 83c743e6e246a751675728d29a627a98475d72d6 (diff) | |
download | jgit-fc8ff50e1a4bc6e84146e11c62fd6a8fb3731b91.tar.gz jgit-fc8ff50e1a4bc6e84146e11c62fd6a8fb3731b91.zip |
Add missing @Deprecated to deprecated fields and methods
Java spec requires the @Deprecated annotation on any deprecated
field or method. Add the missing annotation to fields and methods
already declared deprecated in the javadoc.
Change-Id: Ic0ef24b43cfd99ac947e771ef5a28e493c304274
Diffstat (limited to 'org.eclipse.jgit.pgm')
-rw-r--r-- | org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/TextBuiltin.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/TextBuiltin.java b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/TextBuiltin.java index dc081439df..7f7ef8d4d1 100644 --- a/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/TextBuiltin.java +++ b/org.eclipse.jgit.pgm/src/org/eclipse/jgit/pgm/TextBuiltin.java @@ -103,6 +103,7 @@ public abstract class TextBuiltin { * * @deprecated Use outw instead */ + @Deprecated protected PrintWriter out; /** Git repository the command was invoked within. */ |