Skip to content

Commit d4e0bd0

Browse files
authored
Merge pull request #4973 from antlechner/antonia/vr-primitive-wrappers
[TG-8623] Fix primitive wrapper types in JSON value retriever
2 parents f2742ba + 91e652e commit d4e0bd0

File tree

56 files changed

+544
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+544
-1
lines changed
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public class ContainerForBoolean {
2+
public Boolean booleanField;
3+
public ContainerForBoolean(Boolean b) { booleanField = b; }
4+
}
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public class ContainerForByte {
2+
public Byte byteField;
3+
public ContainerForByte(Byte b) { byteField = b; }
4+
}
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public class ContainerForCharacter {
2+
public Character characterField;
3+
public ContainerForCharacter(Character c) { characterField = c; }
4+
}
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public class ContainerForDouble {
2+
public Double doubleField;
3+
public ContainerForDouble(Double d) { doubleField = d; }
4+
}
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public class ContainerForFloat {
2+
public Float floatField;
3+
public ContainerForFloat(Float f) { floatField = f; }
4+
}

0 commit comments

Comments
 (0)