lib/celluloid/linking.rb in celluloid-0.5.0 vs lib/celluloid/linking.rb in celluloid-0.6.0
- old
+ new
@@ -48,10 +48,10 @@
# Generate a string representation
def inspect
@lock.synchronize do
links = @links.to_a.map { |l| "#{l.class}:#{l.object_id}" }.join(',')
- "#<Celluloid::Links[#{links}]>"
+ "#<#{self.class}[#{links}]>"
end
end
end
# Support for linking actors together so they can crash or react to errors