Skip to content

Commit e67bb69

Browse files
committed
Revert unrelated changes
1 parent 3cb6eaa commit e67bb69

File tree

5 files changed

+17
-61
lines changed

5 files changed

+17
-61
lines changed

src/Components/Endpoints/src/Binding/Factories/ComplexType/ComplexTypeExpressionConverterFactoryOfT.cs

Lines changed: 6 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -156,44 +156,10 @@ private static FormDataConverterReadParameters CreateFormDataConverterParameters
156156
Expression.Parameter(typeof(bool).MakeByRefType(), "foundValue"));
157157
}
158158

159-
private readonly struct FormDataConverterReadParameters
160-
{
161-
public ParameterExpression ReaderParam { get; }
162-
163-
public ParameterExpression TypeParam { get; }
164-
165-
public ParameterExpression OptionsParam { get; }
166-
167-
public ParameterExpression ResultParam { get; }
168-
169-
public ParameterExpression FoundValueParam { get; }
170-
171-
public FormDataConverterReadParameters(
172-
ParameterExpression readerParam,
173-
ParameterExpression typeParam,
174-
ParameterExpression optionsParam,
175-
ParameterExpression resultParam,
176-
ParameterExpression foundValueParam)
177-
{
178-
ReaderParam = readerParam;
179-
TypeParam = typeParam;
180-
OptionsParam = optionsParam;
181-
ResultParam = resultParam;
182-
FoundValueParam = foundValueParam;
183-
}
184-
185-
public void Deconstruct(
186-
out ParameterExpression readerParam,
187-
out ParameterExpression typeParam,
188-
out ParameterExpression optionsParam,
189-
out ParameterExpression resultParam,
190-
out ParameterExpression foundValueParam)
191-
{
192-
readerParam = ReaderParam;
193-
typeParam = TypeParam;
194-
optionsParam = OptionsParam;
195-
resultParam = ResultParam;
196-
foundValueParam = FoundValueParam;
197-
}
198-
}
159+
private record struct FormDataConverterReadParameters(
160+
ParameterExpression ReaderParam,
161+
ParameterExpression TypeParam,
162+
ParameterExpression OptionsParam,
163+
ParameterExpression ResultParam,
164+
ParameterExpression FoundValueParam);
199165
}

src/Components/Web.JS/dist/Release/blazor.server.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Components/Web.JS/dist/Release/blazor.web.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Components/test/testassets/Components.WasmMinimal/Properties/launchSettings.json

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
{
2+
"iisSettings": {
3+
"windowsAuthentication": false,
4+
"anonymousAuthentication": true,
5+
"iisExpress": {
6+
"applicationUrl": "http://localhost:54192/",
7+
"sslPort": 44397
8+
}
9+
},
210
"profiles": {
311
"GlobalizationWasmApp": {
412
"commandName": "Project",
@@ -15,13 +23,5 @@
1523
"ASPNETCORE_ENVIRONMENT": "Development"
1624
}
1725
}
18-
},
19-
"iisSettings": {
20-
"windowsAuthentication": false,
21-
"anonymousAuthentication": true,
22-
"iisExpress": {
23-
"applicationUrl": "http://localhost:50516/",
24-
"sslPort": 44370
25-
}
2626
}
27-
}
27+
}

0 commit comments

Comments
 (0)