tck/src/main/java/org/apache/jdo/tck/pc/inheritance/TopNonPersistG.java [30:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public TopNonPersistG(
      int intA,
      double doubleB,
      int intB,
      char charC,
      boolean booleanD,
      float floatE,
      short shortF,
      short shortG) {
    super(intA, doubleB, intB, charC, booleanD, floatE, shortF);
    this.shortG = shortG;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tck/src/main/java/org/apache/jdo/tck/pc/inheritance/TopPersistG.java [30:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public TopPersistG(
      int intA,
      double doubleB,
      int intB,
      char charC,
      boolean booleanD,
      float floatE,
      short shortF,
      short shortG) {
    super(intA, doubleB, intB, charC, booleanD, floatE, shortF);
    this.shortG = shortG;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



