Removed extra newlines after open curly braces (#935)

Generated by wpilibsuite/styleguide#115.
This commit is contained in:
Tyler Veness
2018-05-15 23:57:24 -07:00
committed by Peter Johnson
parent 938d5379e6
commit adb6098353
19 changed files with 0 additions and 26 deletions

View File

@@ -17,7 +17,6 @@ import org.opencv.core.Mat;
* @see VisionThread
*/
public interface VisionPipeline {
/**
* Processes the image input and sets the result objects.
* Implementations should make these objects accessible.

View File

@@ -38,7 +38,6 @@ public class VisionRunner<P extends VisionPipeline> {
*/
@FunctionalInterface
public interface Listener<P extends VisionPipeline> {
/**
* Called when the pipeline has run. This shouldn't take much time to run because it will delay
* later calls to the pipeline's {@link VisionPipeline#process process} method. Copying the