Browse Source

Removed the getter from _columnOffsets.

lmcnichols 4 years ago
parent
commit
add41c8b44
1 changed files with 0 additions and 9 deletions
  1. 0 9
      packages/csvviewer/src/model.ts

+ 0 - 9
packages/csvviewer/src/model.ts

@@ -150,15 +150,6 @@ export class DSVModel extends DataModel implements IDisposable {
     return this._rowDelimiter;
   }
 
-  /**
-   * #### Notes
-   * The index of the first character in the data string for row r, column c is
-   * _columnOffsets[(r-this._columnOffsetsStartingRow)*numColumns+c]
-   */
-  get columnOffsets(): Uint32Array {
-    return this._columnOffsets;
-  }
-
   /**
    * A boolean determined by whether parsing has completed.
    */