Skip to content

Commit 7f42b78

Browse files
committed
chore: Remove distinct feature dead code
1 parent 34dd084 commit 7f42b78

File tree

1 file changed

+1
-38
lines changed

1 file changed

+1
-38
lines changed
Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using System;
2-
3-
namespace Uno.UI.RemoteControl.HotReload;
1+
namespace Uno.UI.RemoteControl.HotReload;
42

53
internal enum HotReloadMode
64
{
@@ -15,38 +13,3 @@ internal enum HotReloadMode
1513
/// <remarks>This can be metadata-updates pushed by either VS or the dev-server.</remarks>
1614
MetadataUpdates,
1715
}
18-
19-
[Flags]
20-
internal enum MetadataUpdatesSupport
21-
{
22-
None,
23-
24-
// Emitter
25-
26-
/// <summary>
27-
/// Metadata-updates are emitted by the IDE
28-
/// </summary>
29-
Ide = 1 << 0,
30-
31-
/// <summary>
32-
/// Metadata-updates are emitted by the dev-server by listening to the file system.
33-
/// </summary>
34-
DevServer = 1 << 1,
35-
36-
// Channels
37-
38-
/// <summary>
39-
/// Metadata-updates are pushed directly to the runtime (currently compatible only with the IDE emitter).
40-
/// </summary>
41-
Runtime = 1 << 4,
42-
43-
/// <summary>
44-
/// Metadata-updates are sent through the App channel using AssemblyDeltaReload frame message (currently compatible only with the DevServer emitter).
45-
/// </summary>
46-
RemoteControl = 1 << 5,
47-
48-
/// <summary>
49-
/// Metadata-updates are sent to the app through the debugger using the IDE channel (currently compatible only with the DevServer emitter).
50-
/// </summary>
51-
Debugger = 1 << 6,
52-
}

0 commit comments

Comments
 (0)