diff --git a/EliteBGS/AdjustProfitWindow.xaml b/EliteBGS/AdjustProfitWindow.xaml
deleted file mode 100644
index 77ac184..0000000
--- a/EliteBGS/AdjustProfitWindow.xaml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/EliteBGS/AdjustProfitWindow.xaml.cs b/EliteBGS/AdjustProfitWindow.xaml.cs
deleted file mode 100644
index 2da7c5e..0000000
--- a/EliteBGS/AdjustProfitWindow.xaml.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Shapes;
-
-namespace EliteBGS {
- ///
- /// Interaction logic for AdjustProfitWindow.xaml
- ///
- public partial class AdjustProfitWindow : Window {
- public AdjustProfitWindow() {
- InitializeComponent();
- }
-
- private void Cancel_Click(object sender, RoutedEventArgs e) {
- DialogResult = false;
- Close();
- }
-
- private void Accept_Click(object sender, RoutedEventArgs e) {
- DialogResult = true;
- Close();
- }
- }
-}
diff --git a/EliteBGS/AnalysisReport.sarif b/EliteBGS/AnalysisReport.sarif
deleted file mode 100644
index 603eb5f..0000000
--- a/EliteBGS/AnalysisReport.sarif
+++ /dev/null
@@ -1,109 +0,0 @@
-{
- "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json",
- "version": "2.1.0",
- "runs": [
- {
- "tool": {
- "driver": {
- "name": "Dependency Analysis",
- "semanticVersion": "0.4.355802",
- "informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview",
- "rules": [
- {
- "id": "UA106",
- "name": "PackageToBeAdded",
- "fullDescription": {
- "text": "Packages that need to be added in order to upgrade the project to chosen TFM"
- },
- "helpUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
- }
- ]
- }
- },
- "results": [
- {
- "ruleId": "UA106",
- "message": {
- "text": "Package Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers, Version=0.4.355802 needs to be added."
- },
- "locations": [
- {
- "physicalLocation": {
- "artifactLocation": {
- "uri": "file:///D:/src/EDBGS/EliteBGS/EliteBGS.csproj"
- },
- "region": {}
- }
- }
- ]
- },
- {
- "ruleId": "UA106",
- "message": {
- "text": "Package Microsoft.Windows.Compatibility, Version=7.0.0 needs to be added."
- },
- "locations": [
- {
- "physicalLocation": {
- "artifactLocation": {
- "uri": "file:///D:/src/EDBGS/EliteBGS/EliteBGS.csproj"
- },
- "region": {}
- }
- }
- ]
- }
- ],
- "columnKind": "utf16CodeUnits"
- },
- {
- "tool": {
- "driver": {
- "name": "API Upgradability",
- "semanticVersion": "0.4.355802",
- "informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview"
- }
- },
- "results": [],
- "columnKind": "utf16CodeUnits"
- },
- {
- "tool": {
- "driver": {
- "name": "Component Analysis",
- "semanticVersion": "0.4.355802",
- "informationUri": "https://docs.microsoft.com/en-us/dotnet/core/porting/upgrade-assistant-overview",
- "rules": [
- {
- "id": "UA209",
- "name": "Microsoft.DotNet.UpgradeAssistant.Extensions.Windows.WinformsDefaultFontUpdater",
- "fullDescription": {
- "text": "Default Font API Alert"
- },
- "helpUri": "about:blank"
- }
- ]
- }
- },
- "results": [
- {
- "ruleId": "UA209",
- "message": {
- "text": "Default font in Windows Forms has been changed from Microsoft Sans Serif to Seg Segoe UI, in order to change the default font use the API - Application.SetDefaultFont(Font font). For more details see here - https://devblogs.microsoft.com/dotnet/whats-new-in-windows-forms-in-net-6-0-preview-5/#application-wide-default-font."
- },
- "locations": [
- {
- "physicalLocation": {
- "artifactLocation": {
- "uri": "file:///D:/src/EDBGS/EliteBGS/EliteBGS.csproj"
- },
- "region": {}
- }
- }
- ]
- }
- ],
- "columnKind": "utf16CodeUnits"
- }
- ]
-}
\ No newline at end of file
diff --git a/EliteBGS/MainWindow.xaml b/EliteBGS/MainWindow.xaml
index e79207f..ea7327a 100644
--- a/EliteBGS/MainWindow.xaml
+++ b/EliteBGS/MainWindow.xaml
@@ -45,8 +45,6 @@
-
-
diff --git a/EliteBGS/MainWindow.xaml.cs b/EliteBGS/MainWindow.xaml.cs
index 2948d82..e98fb55 100644
--- a/EliteBGS/MainWindow.xaml.cs
+++ b/EliteBGS/MainWindow.xaml.cs
@@ -263,26 +263,6 @@ public partial class MainWindow : Window {
GenerateLog();
}
- private void AdjustProfit_Click(object sender, RoutedEventArgs e) {
- if (entries.SelectedItem == null || entries.SelectedItem.GetType() != typeof(SellCargo)) {
- return;
- }
-
- SellCargo sell = entries.SelectedItem as SellCargo;
- AdjustProfitWindow adjust = new AdjustProfitWindow() { Owner = this };
-
- adjust.Profit.Text = sell.Profit.ToString();
-
- if (!(adjust.ShowDialog() ?? false)) {
- return;
- }
-
- if (int.TryParse(adjust.Profit.Text, out int newprofit)) {
- sell.Profit = newprofit;
- RefreshView();
- }
- }
-
private void LogType_SelectionChanged(object sender, SelectionChangedEventArgs e) {
if (LogType.SelectedItem == null) {
return;