Fix a typo in "capabilities" in ReceivePack

Change-Id: Ib26adf954dcb90403be9d6ed3b7a425a724c67d0
This commit is contained in:
Dave Borowitz 2012-03-07 12:21:50 -08:00
parent e05300b21d
commit eea8581da5
1 changed files with 6 additions and 6 deletions

View File

@ -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 void receive(final InputStream input, final OutputStream output,
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 void receive(final InputStream input, final OutputStream output,
pckIn = null;
pckOut = null;
refs = null;
enabledCapablities = null;
enabledCapabilities = null;
commands = null;
if (timer != null) {
try {
@ -894,7 +894,7 @@ private void recvCommands() throws IOException {
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 @@ private void recvCommands() throws IOException {
}
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;