From 9fe44e481e2b2358a69756feb232128e728d07ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=AE=D1=80=D0=B8=D0=B8=CC=86=20=D0=A1=D0=BE=D1=80=D0=BE?= =?UTF-8?q?=D0=BA=D0=B8=D0=BD?= Date: Fri, 2 Aug 2019 19:38:14 +0300 Subject: [PATCH] Fix file output string --- xcode/build_phases/Unused.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/build_phases/Unused.rb b/xcode/build_phases/Unused.rb index c84321f..0c25e07 100644 --- a/xcode/build_phases/Unused.rb +++ b/xcode/build_phases/Unused.rb @@ -47,7 +47,7 @@ class Item end def serialize - "#{@full_file_path}:#{@at} #{@type.to_s} #{@name.to_s} is unused" + "#{@file}:#{@at} #{@type.to_s} #{@name.to_s} is unused" end def to_xcode "#{full_file_path}:#{@at}:0: warning: #{@type.to_s} #{@name.to_s} is unused"