Skip to content

Commit f1b618a

Browse files
committed
Fixed style errors.
1 parent 92ed1e6 commit f1b618a

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

cloud-tasks/src/main/java/com.example.cloudtasks/PullQueue.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,12 @@
3030
import com.google.api.services.cloudtasks.v2beta2.model.PullMessage;
3131
import com.google.api.services.cloudtasks.v2beta2.model.Task;
3232
import com.google.common.io.BaseEncoding;
33+
import java.io.IOException;
3334
import net.sourceforge.argparse4j.ArgumentParsers;
3435
import net.sourceforge.argparse4j.inf.ArgumentParser;
3536
import net.sourceforge.argparse4j.inf.Namespace;
3637
import net.sourceforge.argparse4j.inf.Subparsers;
3738

38-
import java.io.IOException;
39-
4039

4140
public class PullQueue {
4241

cloud-tasks/src/test/java/com/example/cloudtasks/PullQueueIT.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,17 @@
1616

1717
package com.example.cloudtasks;
1818

19+
import static org.junit.Assert.assertNotNull;
20+
import static org.junit.Assert.assertTrue;
21+
22+
import java.io.ByteArrayOutputStream;
23+
import java.io.PrintStream;
1924
import org.junit.After;
2025
import org.junit.Before;
2126
import org.junit.Test;
2227
import org.junit.runner.RunWith;
2328
import org.junit.runners.JUnit4;
2429

25-
import java.io.ByteArrayOutputStream;
26-
import java.io.PrintStream;
27-
28-
import static org.junit.Assert.assertNotNull;
29-
import static org.junit.Assert.assertTrue;
30-
3130
/**
3231
* Integration (system) tests for {@link PullQueue}.
3332
*/

0 commit comments

Comments
 (0)