Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
lbwexler committed Sep 19, 2024
1 parent 9b354a5 commit 8557125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/io/xh/hoist/cache/BaseCache.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ abstract class BaseCache<V> {
// Implementation
//------------------------
protected void fireOnChange(Object key, V oldValue, V value) {
def change = new CacheValueChanged(this, key, oldValue, value)
def change = new CacheValueChanged(this, key, oldValue, value)
onChange.each { it.call(change) }
}

Expand Down

0 comments on commit 8557125

Please sign in to comment.