Format all Java in WebRTC.

BUG=webrtc:6419
TBR=henrika@webrtc.org

Review-Url: https://codereview.webrtc.org/2377003002
Cr-Commit-Position: refs/heads/master@{#14432}
This commit is contained in:
sakal
2016-09-29 04:12:44 -07:00
committed by Commit bot
parent a48ddb7636
commit b6760f9e44
88 changed files with 1555 additions and 2071 deletions

View File

@ -62,6 +62,7 @@ public class DirectRTCClientTest {
@Test
public void testValidIpPattern() {
// Strings that should match the pattern.
// clang-format off
final String[] ipAddresses = new String[] {
"0.0.0.0",
"127.0.0.1",
@ -79,6 +80,7 @@ public class DirectRTCClientTest {
"[::1]:8888",
"[2001:0db8:85a3:0000:0000:8a2e:0370:7946]:8888"
};
// clang-format on
for (String ip : ipAddresses) {
assertTrue(ip + " didn't match IP_PATTERN even though it should.",
@ -89,6 +91,7 @@ public class DirectRTCClientTest {
@Test
public void testInvalidIpPattern() {
// Strings that shouldn't match the pattern.
// clang-format off
final String[] invalidIpAddresses = new String[] {
"Hello, World!",
"aaaa",
@ -96,6 +99,7 @@ public class DirectRTCClientTest {
"[hello world]",
"hello:world"
};
// clang-format on
for (String invalidIp : invalidIpAddresses) {
assertFalse(invalidIp + " matched IP_PATTERN even though it shouldn't.",
@ -121,8 +125,8 @@ public class DirectRTCClientTest {
verify(clientEvents, timeout(NETWORK_TIMEOUT))
.onConnectedToRoom(any(AppRTCClient.SignalingParameters.class));
SessionDescription answerSdp
= new SessionDescription(SessionDescription.Type.ANSWER, DUMMY_SDP);
SessionDescription answerSdp =
new SessionDescription(SessionDescription.Type.ANSWER, DUMMY_SDP);
client.sendAnswerSdp(answerSdp);
verify(serverEvents, timeout(NETWORK_TIMEOUT))
.onRemoteDescription(isNotNull(SessionDescription.class));

View File

@ -52,7 +52,6 @@ public class TCPChannelClientTest {
private TCPChannelClient server;
private TCPChannelClient client;
@Before
public void setUp() {
ShadowLog.stream = System.out;