Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 202064 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/emf/internal/cdo/analyzer/CDOClusterOfFetchRule.java (-2 / +1 lines)
Lines 52-59 Link Here
52
  @Override
52
  @Override
53
  public int hashCode()
53
  public int hashCode()
54
  {
54
  {
55
    // TODO Missing "rootClass.hashCode() ^ " or intention?
55
    return rootFeature.hashCode() ^ rootClass.hashCode();
56
    return rootFeature.hashCode();
57
  }
56
  }
58
57
59
  @Override
58
  @Override
(-)src/org/eclipse/emf/internal/cdo/analyzer/CDOAbstractFeatureRuleAnalyzer.java (-3 lines)
Lines 39-47 Link Here
39
39
40
  protected int loadRevisionCollectionChunkSize;
40
  protected int loadRevisionCollectionChunkSize;
41
41
42
  /**
43
   * TODO Can didFetch be derived from fetchCount?
44
   */
45
  private boolean didFetch;
42
  private boolean didFetch;
46
43
47
  private int fetchCount = 0;
44
  private int fetchCount = 0;
(-)src/org/eclipse/emf/internal/cdo/analyzer/CDOFetchFeatureInfo.java (-2 / +1 lines)
Lines 104-111 Link Here
104
  @Override
104
  @Override
105
  public int hashCode()
105
  public int hashCode()
106
  {
106
  {
107
    // TODO Missing "cdoClass.hashCode() ^ " or intention?
107
    return cdoClass.hashCode()  ^ cdoFeature.hashCode();
108
    return cdoFeature.hashCode();
109
  }
108
  }
110
109
111
  @Override
110
  @Override

Return to bug 202064