Sfoglia il codice sorgente

PushConnectionTest: Use Java 7 try-with-resources

Change-Id: I429066d2af9c5fb8bf8bc038b99ebe5a7dc09170
tags/v4.5.0.201609210915-r
Shawn Pearce 8 anni fa
parent
commit
ae5870a1f2

+ 3
- 10
org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java Vedi File

@@ -125,16 +125,9 @@ public class PushConnectionTest {
Map<String, RemoteRefUpdate> updates = new HashMap<>();
updates.put(rru.getRemoteName(), rru);

Transport tn = testProtocol.open(uri, client, "server");
try {
PushConnection connection = tn.openPush();
try {
connection.push(NullProgressMonitor.INSTANCE, updates);
} finally {
connection.close();
}
} finally {
tn.close();
try (Transport tn = testProtocol.open(uri, client, "server");
PushConnection connection = tn.openPush()) {
connection.push(NullProgressMonitor.INSTANCE, updates);
}

assertEquals(REJECTED_OTHER_REASON, rru.getStatus());

Loading…
Annulla
Salva