Skip to content

Commit

Permalink
Fixing Issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Alcala, Jose Luis authored and Alcala, Jose Luis committed Nov 22, 2017
1 parent 999302b commit e38b850
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Example/SwifttorExample/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ EXTERNAL SOURCES:

CHECKOUT OPTIONS:
Swifttor:
:commit: c7f03bef959a5cc35d7c479e205ad41a1e7ffe23
:commit: 999302b5a6ebcd776cfc417c7311ba01d5c48053
:git: https://github.com/josete89/swifttor.git

SPEC CHECKSUMS:
Expand Down
2 changes: 1 addition & 1 deletion Example/SwifttorExample/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Example/SwifttorExample/Pods/Swifttor/Swifttor/Actor.swift

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Swifttor/ActorSystem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ public struct ActorSystem {

fileprivate static var actors:[String:Any] = [:]

static func actorOfInstance<T:Actor>(_ actor:T) -> ActorRef<T> {
static public func actorOfInstance<T:Actor>(_ actor:T) -> ActorRef<T> {
return ActorRef(actor: actor)
}

static func actorOf<T:Actor>(actorType:T.Type) -> ActorRef<T> {
static public func actorOf<T:Actor>(actorType:T.Type) -> ActorRef<T> {
let key = "\(actorType)"
let act = actorType.init()
let actorRef:ActorRef<T>
Expand Down

0 comments on commit e38b850

Please sign in to comment.