Skip to content

Commit ca8f6e0

Browse files
authored
Optimize SeriesScanUtil by memorizing the order time and satisfied information for each Seq and Unseq Resource (#58)
1 parent 5febf80 commit ca8f6e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tsfile/src/main/java/org/apache/tsfile/file/metadata/PlainDeviceID.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class PlainDeviceID implements IDeviceID {
3535
private static final long INSTANCE_SIZE =
3636
RamUsageEstimator.shallowSizeOfInstance(PlainDeviceID.class)
3737
+ RamUsageEstimator.shallowSizeOfInstance(String.class);
38-
String deviceID;
38+
private final String deviceID;
3939

4040
public PlainDeviceID(String deviceID) {
4141
this.deviceID = deviceID;

0 commit comments

Comments
 (0)