From 845f2bdeb87201a3e1fcb065f8668c2fdc16efaa Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 18 Sep 2019 10:49:20 +0900 Subject: [PATCH] Remove unneeded comments --- internal/graphicscommand/image.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/internal/graphicscommand/image.go b/internal/graphicscommand/image.go index b0ababd57..cba698dfc 100644 --- a/internal/graphicscommand/image.go +++ b/internal/graphicscommand/image.go @@ -95,18 +95,6 @@ func NewScreenFramebufferImage(width, height int) *Image { } func (i *Image) Dispose() { - // If i is 4 - // 1->2 - // 1->4 - // 4->3 - // 3->4 - // ?->4 - // 4->5 - // ... - // 消せるのは - // 最新からさかのぼって 4 が src になるところまで - // 直接作用しているやつだけ - c := &disposeCommand{ target: i, }