aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/swift/BarLib/mul.swift
diff options
context:
space:
mode:
authorGravatar thomasvl <thomasvl@google.com>2017-09-08 21:44:06 +0200
committerGravatar Philipp Wollermann <philwo@google.com>2017-09-11 13:07:19 +0200
commite9c788a9711e8f780de7eb5bd3e1bed7994eb88c (patch)
tree7315d141dd6149e53f53f07701ffed04838ddbb9 /examples/swift/BarLib/mul.swift
parentdd8bfab0bc3d2e663c38ec3df4b078d294078449 (diff)
Remove swift_library and tests, lives in the apple rules repo now.
RELNOTES: The swift_library rule that is distributed with Bazel has been deleted. Users who wish to compile Swift should use the rules in https://github.com/bazelbuild/rules_apple instead. PiperOrigin-RevId: 168032330
Diffstat (limited to 'examples/swift/BarLib/mul.swift')
-rw-r--r--examples/swift/BarLib/mul.swift8
1 files changed, 0 insertions, 8 deletions
diff --git a/examples/swift/BarLib/mul.swift b/examples/swift/BarLib/mul.swift
deleted file mode 100644
index 898c0b6877..0000000000
--- a/examples/swift/BarLib/mul.swift
+++ /dev/null
@@ -1,8 +0,0 @@
-/// Class used to multiply stuff.
-public class Multiplier {
- public init() {}
-
- public func multiply(a first: Int, b second: Int) -> Int {
- return first * second
- }
-}