Yes. In case if you don't want to store it as objects then you can move this fields to original object:
class a{
Int a;
class b;
}
class b{
int b;
int c;
}
You can change it as next:
class a{
int a,
int b;
int c;
}
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/
