File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -94,8 +94,6 @@ TCodeImportMgr = class sealed(TObject)
94
94
fSnippetInfoList: TSnippetInfoList;
95
95
// / <summary>Value of ImportInfo property.</summary>
96
96
fImportInfoList: TImportInfoList;
97
- // / <summary>Value of UserInfo property.</summary>
98
- fUserInfo: TUserInfo;
99
97
// / <summary>Initialises import information list with details of snippets
100
98
// / read from import file.</summary>
101
99
procedure InitImportInfoList ;
@@ -132,9 +130,6 @@ TCodeImportMgr = class sealed(TObject)
132
130
// / <remarks>Any existing snippets with same name as imported snippets are
133
131
// / overwritten.</remarks>
134
132
procedure UpdateDatabase ;
135
- // / <summary>Information about user who created the import file.</summary>
136
- // / <remarks>May be null if no user info included in import file.</remarks>
137
- property UserInfo: TUserInfo read fUserInfo;
138
133
// / <summary>List of information describing if and how to import snippets
139
134
// / in import file. Permits customisation of import.</summary>
140
135
property ImportInfo: TImportInfoList read fImportInfoList;
@@ -210,7 +205,6 @@ procedure TCodeImportMgr.Import(const FileName: string);
210
205
var
211
206
Data: TBytes; // content of import file as bytes
212
207
begin
213
- fUserInfo := TUserInfo.CreateNul;
214
208
fImportInfoList.Clear;
215
209
try
216
210
Data := TFileIO.ReadAllBytes(FileName);
You can’t perform that action at this time.
0 commit comments