This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git
The following commit(s) were added to refs/heads/master by this push:
new 5140def Multiple variables should not be declared on the same line
new 0a452ef Merge pull request #635 from
nanthakumar1305/sonarqube_20210219
5140def is described below
commit 5140deffe9673ddebb6cee5f36adbd7d0dd4294c
Author: nanthakumar1305 <[email protected]>
AuthorDate: Sat Feb 20 07:59:15 2021 +0000
Multiple variables should not be declared on the same line
---
.../java/org/apache/hop/core/BlockingBatchingRowSet.java | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/core/src/main/java/org/apache/hop/core/BlockingBatchingRowSet.java
b/core/src/main/java/org/apache/hop/core/BlockingBatchingRowSet.java
index 2b427a3..78847e7 100644
--- a/core/src/main/java/org/apache/hop/core/BlockingBatchingRowSet.java
+++ b/core/src/main/java/org/apache/hop/core/BlockingBatchingRowSet.java
@@ -34,10 +34,14 @@ import java.util.concurrent.TimeUnit;
* @since 04-05-2011
*/
public class BlockingBatchingRowSet extends BaseRowSet implements
Comparable<IRowSet>, IRowSet {
- private BlockingQueue<Object[][]> putArray, getArray;
-
- private int putIndex, getIndex;
- private Object[][] inputBuffer, outputBuffer;
+ private BlockingQueue<Object[][]> putArray;
+ private BlockingQueue<Object[][]> getArray;
+
+ private int putIndex;
+ private int getIndex;
+
+ private Object[][] inputBuffer;
+ private Object[][] outputBuffer;
private int size;