Skip to content

Commit

Permalink
refactor: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
furesoft committed Oct 11, 2024
1 parent 565d148 commit 957a1ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/MimaSim/MimaSim.Browser/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>MimaSim</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base href="/MimaSim/" />
<base href="/" />
<link rel="modulepreload" href="./main.js" />
<link rel="modulepreload" href="./_framework/dotnet.js" />
<link rel="modulepreload" href="./_framework/avalonia.js" />
Expand Down
2 changes: 1 addition & 1 deletion src/MimaSim/MimaSim/Controls/ProgramEditorControl.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);

Console.WriteLine(string.Join('\n', GetType().Assembly.GetManifestResourceNames()))
Console.WriteLine(string.Join('\n', GetType().Assembly.GetManifestResourceNames()));

IHighlightingDefinition customHighlighting;
using (Stream s = GetType().Assembly.GetManifestResourceStream("MimaSim.Resources.CustomHighlighting.xshd"))

Check warning on line 30 in src/MimaSim/MimaSim/Controls/ProgramEditorControl.axaml.cs

View workflow job for this annotation

GitHub Actions / build

Converting null literal or possible null value to non-nullable type.
Expand Down

0 comments on commit 957a1ed

Please sign in to comment.