Some requested properties specifed in view are not loaded in CC transaction browser. #PL-6070

This commit is contained in:
Konstantin Krivopustov 2015-10-01 12:19:46 +00:00
parent 86f87f39da
commit b667015e8f

View File

@ -353,7 +353,7 @@ public class FetchGroupManager {
FetchGroupField that = (FetchGroupField) o;
if (!metaClass.equals(that.metaClass)) return false;
if (!metaProperty.equals(that.metaProperty)) return false;
if (!metaPropertyPath.equals(that.metaPropertyPath)) return false;
return true;
}
@ -361,7 +361,7 @@ public class FetchGroupManager {
@Override
public int hashCode() {
int result = metaClass.hashCode();
result = 31 * result + metaProperty.hashCode();
result = 31 * result + metaPropertyPath.hashCode();
return result;
}