Skip to content

Commit

Permalink
Merge pull request #1940 from zhongsigang/master
Browse files Browse the repository at this point in the history
Changing a method of lift actor.
  • Loading branch information
farmdawgnation authored Mar 29, 2018
2 parents b3827c0 + 83f729f commit 3ab4cc2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion core/actor/src/main/scala/net/liftweb/actor/LAFuture.scala
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class LAFuture[T](val scheduler: LAScheduler = LAScheduler, context: Box[LAFutur
/**
* Has the future been aborted
*/
def aborted_? = synchronized {satisfied}
def aborted_? = synchronized {aborted}

/**
* Java-friendly alias for completed_?.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ trait SpecializedLiftActor[T] extends SimpleActor[T] {
*/

def remove() {
val newPrev = prev
prev.next = next
next.prev = prev
}
Expand Down

0 comments on commit 3ab4cc2

Please sign in to comment.