Skip to content

Commit

Permalink
Remove unnecessary Sealed attributes on classes
Browse files Browse the repository at this point in the history
  • Loading branch information
mfacchinelli committed Feb 2, 2024
1 parent 97c0a61 commit a566846
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/data/+mag/+hk/Power.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
classdef (Sealed) Power < mag.HK
classdef Power < mag.HK
% POWER Class containing MAG power HK packet data.

properties (Dependent)
Expand Down
2 changes: 1 addition & 1 deletion src/data/+mag/+hk/Processor.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
classdef (Sealed) Processor < mag.HK
classdef Processor < mag.HK
% PROCESSOR Class containing MAG processor HK packet data.

properties (Dependent)
Expand Down
2 changes: 1 addition & 1 deletion src/data/+mag/+hk/SID15.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
classdef (Sealed) SID15 < mag.HK
classdef SID15 < mag.HK
% SID15 Class containing MAG SID15 HK packet data.

properties (Dependent)
Expand Down
2 changes: 1 addition & 1 deletion src/data/+mag/+hk/Status.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
classdef (Sealed) Status < mag.HK
classdef Status < mag.HK
% STATUS Class containing MAG status HK packet data.

properties (Dependent)
Expand Down
2 changes: 1 addition & 1 deletion src/data/+mag/Science.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
classdef (Sealed) Science < mag.TimeSeries & matlab.mixin.CustomDisplay
classdef Science < mag.TimeSeries & matlab.mixin.CustomDisplay
% SCIENCE Class containing MAG science data.

properties (Dependent)
Expand Down

0 comments on commit a566846

Please sign in to comment.