Line Cleanup

This commit is contained in:
Cara 2020-12-15 02:58:29 +10:30
parent 850123aece
commit 480c027975

View file

@ -147,7 +147,6 @@ namespace Dalamud.Interface {
foreach (var trackedHook in HookInfo.TrackedHooks) {
try {
if (!this.showDalamudHooks && trackedHook.Assembly == Assembly.GetExecutingAssembly()) continue;
ImGui.Text($"{trackedHook.Delegate.Target} :: {trackedHook.Delegate.Method.Name}");
ImGui.TextDisabled(trackedHook.Assembly.FullName);
@ -188,8 +187,6 @@ namespace Dalamud.Interface {
HookInfo.TrackedHooks.RemoveAll(h => h.Hook.IsDisposed);
}
ImGui.EndTabBar();
ImGui.End();