Skip to content

Commit 4ae3a3b

Browse files
committed
Removed dummy constructor and instead made the class Abstract
1 parent 103b1b2 commit 4ae3a3b

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

mlapptools.m

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
classdef mlapptools
1+
classdef (Abstract) mlapptools
22
% MLAPPTOOLS A collection of static methods for customizing various aspects
33
% MATLAB App Designer UIFigures.
44
%
@@ -12,15 +12,6 @@
1212
properties (Access = private, Constant = true)
1313
QUERY_TIMEOUT = 5; % Dojo query timeout period, seconds
1414
end
15-
16-
methods
17-
function obj = mlapptools
18-
% Dummy constructor so we don't return an empty class instance
19-
clear obj
20-
end
21-
end
22-
23-
methods (Static)
2415

2516
methods (Access = public, Static = true)
2617
function textAlign(uielement, alignment)

0 commit comments

Comments
 (0)