Skip to content

Commit

Permalink
Delete Attributes and clean up JavaDoc references to it.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaudy committed Nov 30, 2021
1 parent 5c1b52c commit 5582ff6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
11 changes: 0 additions & 11 deletions engine/chunk/src/main/java/io/deephaven/chunk/Attributes.java

This file was deleted.

2 changes: 1 addition & 1 deletion engine/chunk/src/main/java/io/deephaven/chunk/Chunk.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* Data structure for a contiguous region of data.
*
* @param <ATTR> {@link Attributes} that apply to this chunk
* @param <ATTR> Descriptive attribute that applies to the elements stored within this Chunk
*/
public interface Chunk<ATTR extends Any> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* Data structure for a contiguous region of data that may be mutated.
*
* @param <ATTR> {@link Attributes} that apply to this chunk
* @param <ATTR> Descriptive attribute that applies to the elements stored within this WritableChunk
*/
public interface WritableChunk<ATTR extends Any> extends Chunk<ATTR>, PoolableChunk {
@Override
Expand Down

0 comments on commit 5582ff6

Please sign in to comment.