From 21161692897fe3beb8d67031563ff77ebb3ea20b Mon Sep 17 00:00:00 2001 From: Ryuichi Sai Date: Fri, 1 Sep 2017 09:40:34 -0500 Subject: [PATCH] Remove extension no longer used --- .../Extension/String+Indentation.swift | 23 ------------------- 1 file changed, 23 deletions(-) delete mode 100644 Sources/Transform/Extension/String+Indentation.swift diff --git a/Sources/Transform/Extension/String+Indentation.swift b/Sources/Transform/Extension/String+Indentation.swift deleted file mode 100644 index c2bbc47..0000000 --- a/Sources/Transform/Extension/String+Indentation.swift +++ /dev/null @@ -1,23 +0,0 @@ -/* - Copyright 2015-2017 Ryuichi Laboratories and the Yanagiba project contributors - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -*/ - -import Bocho - -extension String { - var indent: String { - return indented - } -}