Skip to content

Commit

Permalink
Made Daemon.sharedInstance public.
Browse files Browse the repository at this point in the history
  • Loading branch information
ideastouch committed Jan 18, 2019
1 parent 8d9d9e9 commit 7c4315e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CocoaDaemon.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CocoaDaemon'
s.version = '0.9.3'
s.version = '0.9.4'
s.summary = 'Daemon Kit to manage background closures to be called each set period of time.'
s.homepage = 'https://github.com/ideastouch/CocoaDaemon'
s.license = { :type => 'MIT', :file => 'LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion CocoaDaemon/CocoaDaemon/Daemon.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import Foundation
5. "block" should call ones and only ones to "scheduleNext" and is recomended that he do that at his end.
*/
public class Daemon {
static let sharedInstance = Daemon()
public static let sharedInstance = Daemon()
fileprivate let queue: DispatchQueue!
fileprivate var queue_label = "com.troupefit.daemon"

Expand Down

0 comments on commit 7c4315e

Please sign in to comment.