Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
petrov-mg committed Mar 14, 2024
1 parent 7ef7dc4 commit 09c3a11
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ private int readAndCopyInt() {

/** */
private void copyBytes(int cnt) {
assert cnt >=0;
assert cnt >= 0;

if (cnt == 0)
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public void testInnerArray() {
/** */
@Test
public void testCollection() {
Object outerObj = createObject(outerObjType) ;
Object outerObj = createObject(outerObjType);

Collection<Object> col = new ArrayList<>();

Expand All @@ -164,7 +164,7 @@ public void testCollection() {
/** */
@Test
public void testInnerCollection() {
Object outerObj = createObject(outerObjType) ;
Object outerObj = createObject(outerObjType);

Collection<Object> col = new ArrayList<>();

Expand Down Expand Up @@ -208,7 +208,7 @@ public void testMapReferenceBetweenEntries() {
/** */
@Test
public void testMapCollectionInValue() {
Object outerObj = createObject(outerObjType) ;
Object outerObj = createObject(outerObjType);

Collection<Object> col = new ArrayList<>();

Expand All @@ -225,7 +225,7 @@ public void testMapCollectionInValue() {
/** */
@Test
public void testMapArrayInValue() {
Object outerObj = createObject(outerObjType) ;
Object outerObj = createObject(outerObjType);

Map<Object, Object> map = new HashMap<>();

Expand Down Expand Up @@ -461,8 +461,9 @@ private static class SchemaObject {

/** */
protected Object dRefToInnerObjToRecalculate;

public SchemaObject(){

/** */
public SchemaObject() {
// No-op.
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
import org.junit.Test;

/** */
public class RawBytesObjectReaderTest extends GridCommonAbstractTest {
/** */
@Test
Expand Down Expand Up @@ -174,6 +175,7 @@ public TestInvocationHandler(Class<?> proxyCls) {
proxyClsName = proxyCls.getName();
}

/** {@inheritDoc} */
@Override public Object invoke(Object p, Method method, Object[] methodArgs) throws Throwable {
if ("toString".equals(method.getName()))
return proxyClsName;
Expand Down

0 comments on commit 09c3a11

Please sign in to comment.