fix comments that were in wrong spot from refactoring
[scpubgit/Object-Remote.git] / lib / Object / Remote / Role / LogForwarder.pm
index cad2572..d3968d2 100644 (file)
@@ -4,6 +4,8 @@ use Moo::Role;
 
 has enable_forward => ( is => 'rw', default => sub { 1 } );
 has _forward_destination => ( is => 'rw' );
+#lookup table for package names that should not
+#be forwarded across Object::Remote connections
 has _forward_stop => ( is => 'ro', required => 1, default => sub { {} } );
 
 after _deliver_message => sub {