From e49065f6b683982340d630596e09d25369bfbfb7 Mon Sep 17 00:00:00 2001 From: Carlo Eugster Date: Sat, 20 Jan 2018 08:08:04 +0100 Subject: [PATCH] Made the tableView property open --- LicensesViewController/LicensesViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LicensesViewController/LicensesViewController.swift b/LicensesViewController/LicensesViewController.swift index 9b70152..ba9667e 100644 --- a/LicensesViewController/LicensesViewController.swift +++ b/LicensesViewController/LicensesViewController.swift @@ -14,7 +14,7 @@ import UIKit open class LicensesViewController : UIViewController { /// The tableView - let tableView = UITableView(frame: CGRect.zero, style: .grouped) + open let tableView = UITableView(frame: CGRect.zero, style: .grouped) /// The tableView's UITableViewDataSource. var dataSource: LicensesDataSource!