Skip to content

Commit

Permalink
Remove Obsolete attribute from RegisterScriptModule
Browse files Browse the repository at this point in the history
this was most likely added by accided to both overload instead of
only the following one.

fixes #1887
  • Loading branch information
exyi committed Nov 23, 2024
1 parent 1b8d606 commit 79bd52c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ public static LinkResourceBase RegisterScriptFile(
/// <summary> Registers a <see cref="ScriptModuleResource" /> from the specified file.
/// The file can be anywhere in the filesystem, it does not have to be in the wwwroot folder.
/// DotVVM will handle its serving, caching, ... automatically </summary>
[Obsolete("<script type='module'> is always deferred, the attribute does nothing")]
public static LinkResourceBase RegisterScriptModuleFile(
this DotvvmResourceRepository repo,
string name,
Expand All @@ -88,7 +87,7 @@ public static LinkResourceBase RegisterScriptModuleFile(
/// <summary> Registers a <see cref="ScriptModuleResource" /> from the specified file.
/// The file can be anywhere in the filesystem, it does not have to be in the wwwroot folder.
/// DotVVM will handle its serving, caching, ... automatically </summary>
[Obsolete("<script type='module'> is always deferred, the attribute does nothing")]
[Obsolete("<script type='module'> is always deferred, the attribute does nothing. Please remove the defer parameter.")]
public static LinkResourceBase RegisterScriptModuleFile(
this DotvvmResourceRepository repo,
string name,
Expand Down

0 comments on commit 79bd52c

Please sign in to comment.