Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public boolean isModified() {
}

public void setModified(boolean modified) {
this.modified = modified;
this.modified |= modified;
}

/** max page header size without statistics. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public boolean isModified() {

@Override
public void setModified(boolean modified) {
this.modified = modified;
this.modified |= modified;
}

public static long calculateRamSize(String measurementId, TSDataType dataType) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ public boolean isModified() {

@Override
public void setModified(boolean modified) {
this.modified = modified;
this.modified |= modified;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ public boolean isModified() {

@Override
public void setModified(boolean modified) {
this.isModified = modified;
this.isModified |= modified;
}

@Override
Expand Down
Loading