fixed formatting
This commit is contained in:
parent
4d8f0a48ae
commit
b070f3ddaa
@ -1,9 +1,9 @@
|
|||||||
package com.baeldung.samples.java.vavr;
|
package com.baeldung.samples.java.vavr;
|
||||||
|
|
||||||
import io.vavr.collection.Stream;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import io.vavr.collection.Stream;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -12,7 +12,7 @@ import java.util.List;
|
|||||||
public class VavrSampler {
|
public class VavrSampler {
|
||||||
|
|
||||||
static int[] intArray = new int[] { 1, 2, 4 };
|
static int[] intArray = new int[] { 1, 2, 4 };
|
||||||
static List<Integer> intList = new ArrayList<Integer>();
|
static List<Integer> intList = new ArrayList<>();
|
||||||
static int[][] intOfInts = new int[][] { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
|
static int[][] intOfInts = new int[][] { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user