Bläddra i källkod

Fix typo in ReceivePack.java

The comment indicates that a well-behaved client should not have
sent an update for a ref that already exists, but this in a block
that corresponds to a create command.
tags/v0.7.0
Nico Sallembien 14 år sedan
förälder
incheckning
a8817ed77f
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2
    2
      org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java

+ 2
- 2
org.eclipse.jgit/src/org/eclipse/jgit/transport/ReceivePack.java Visa fil

@@ -669,8 +669,8 @@ public class ReceivePack {
}

if (ref != null) {
// A well behaved client shouldn't have sent us an
// update command for a ref we advertised to it.
// A well behaved client shouldn't have sent us a
// create command for a ref we advertised to it.
//
cmd.setResult(Result.REJECTED_OTHER_REASON, "ref exists");
continue;

Laddar…
Avbryt
Spara