Fixed conflicts after recent changes in master
This commit is contained in:
committed by
Egor.Ushakov
parent
5f292c415c
commit
9e788b09cb
Binary file not shown.
@@ -15,7 +15,7 @@ public class TestClassLambda {
|
||||
public int field = 0;
|
||||
|
||||
public void testLambda() {
|
||||
List var1 = Arrays.asList(new Integer[]{1, 2, 3, 4, 5, 6, 7});// 29
|
||||
List var1 = Arrays.asList(1, 2, 3, 4, 5, 6, 7);// 29
|
||||
int var2 = (int)Math.random();// 30
|
||||
var1.forEach((var2x) -> {// 32
|
||||
int var3 = 2 * var2x.intValue();// 33
|
||||
|
||||
@@ -10,7 +10,7 @@ public class TestPrimitives {
|
||||
this.printFloat(1.23F);// 11
|
||||
this.printDouble(1.23D);// 12
|
||||
this.printChar('Z');// 13
|
||||
String.format("%b, %d, %d, %d, %c", new Object[]{true, 1, 213, 40000, 'c', 42L});// 15
|
||||
String.format("%b, %d, %d, %d, %c", true, 1, 213, 40000, 'c', 42L);// 15
|
||||
System.out.println(String.format("%b, %d, %d, %d", this.getBoolean(), this.getByte(), this.getShort(), this.getInt()));// 16
|
||||
}// 17
|
||||
|
||||
@@ -63,9 +63,9 @@ public class TestPrimitives {
|
||||
}
|
||||
|
||||
public void printNarrowed() {
|
||||
this.printByte((byte)this.getInt());// 68
|
||||
this.printShort((short)this.getInt());// 69
|
||||
}// 70
|
||||
this.printByte((byte)this.getInt());// 69
|
||||
this.printShort((short)this.getInt());// 70
|
||||
}// 71
|
||||
|
||||
public void constructor() {
|
||||
new Byte((byte)1);// 73
|
||||
@@ -239,8 +239,8 @@ class 'pkg/TestPrimitives' {
|
||||
}
|
||||
|
||||
method 'constructor ()V' {
|
||||
4 69
|
||||
9 70
|
||||
4 70
|
||||
9 71
|
||||
}
|
||||
|
||||
method 'compare (C)Z' {
|
||||
@@ -320,7 +320,7 @@ Lines mapping:
|
||||
65 <-> 62
|
||||
69 <-> 66
|
||||
70 <-> 67
|
||||
73 <-> 70
|
||||
71 <-> 68
|
||||
74 <-> 71
|
||||
77 <-> 74
|
||||
78 <-> 75
|
||||
|
||||
@@ -9,8 +9,8 @@ public class TestVarArgCalls {
|
||||
this.printComplex("Test: %[0]s", new String[]{"abc"});// 10
|
||||
this.printComplex("Test: %[0]s - %[0]s", new String[]{"abc"}, new String[]{"DEF"});// 11
|
||||
String.format("Test");// 13
|
||||
String.format("Test: %d", Integer.valueOf(123));// 14
|
||||
String.format("Test: %d - %s", Integer.valueOf(123), "DEF");// 15
|
||||
String.format("Test: %d", 123);// 14
|
||||
String.format("Test: %d - %s", 123, "DEF");// 15
|
||||
Object[] data = new Object[]{"Hello"};// 17
|
||||
String.format("Test: %s", (Object)data);// 18
|
||||
String.format("Test: %s", (Object[])data);// 19
|
||||
|
||||
Reference in New Issue
Block a user