diff options
| author | Dave Borowitz | 2012-03-07 20:21:50 +0000 |
|---|---|---|
| committer | Dave Borowitz | 2012-03-07 20:52:45 +0000 |
| commit | eea8581da5b61fb882be24e5657528b761a379e0 (patch) | |
| tree | 7355170e7429bbe4605dae4ac0889517a7bc1765 | |
| parent | e05300b21d5a0479eb278ee38c6d19c956e926f4 (diff) | |
| download | jgit-eea8581da5b61fb882be24e5657528b761a379e0.tar.gz jgit-eea8581da5b61fb882be24e5657528b761a379e0.tar.xz jgit-eea8581da5b61fb882be24e5657528b761a379e0.zip | |
Fix a typo in "capabilities" in ReceivePack
Change-Id: Ib26adf954dcb90403be9d6ed3b7a425a724c67d0
| -rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java index fd57308d7d..f74e6661ba 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java @@ -175,7 +175,7 @@ public class ReceivePack { private Set<ObjectId> advertisedHaves; /** Capabilities requested by the client. */ - private Set<String> enabledCapablities; + private Set<String> enabledCapabilities; /** Commands to execute, as received by the client. */ private List<ReceiveCommand> commands; @@ -713,7 +713,7 @@ public class ReceivePack { pckOut = new PacketLineOut(rawOut); pckOut.setFlushOnEnd(false); - enabledCapablities = new HashSet<String>(); + enabledCapabilities = new HashSet<String>(); commands = new ArrayList<ReceiveCommand>(); service(); @@ -753,7 +753,7 @@ public class ReceivePack { pckIn = null; pckOut = null; refs = null; - enabledCapablities = null; + enabledCapabilities = null; commands = null; if (timer != null) { try { @@ -894,7 +894,7 @@ public class ReceivePack { final int nul = line.indexOf('\0'); if (nul >= 0) { for (String c : line.substring(nul + 1).split(" ")) - enabledCapablities.add(c); + enabledCapabilities.add(c); line = line.substring(0, nul); } } @@ -919,9 +919,9 @@ public class ReceivePack { } private void enableCapabilities() { - reportStatus = enabledCapablities.contains(CAPABILITY_REPORT_STATUS); + reportStatus = enabledCapabilities.contains(CAPABILITY_REPORT_STATUS); - sideBand = enabledCapablities.contains(CAPABILITY_SIDE_BAND_64K); + sideBand = enabledCapabilities.contains(CAPABILITY_SIDE_BAND_64K); if (sideBand) { OutputStream out = rawOut; |
