renamed namespace com.logstash to org.logstash

few auto-rename glitches fixes

few auto-rename glitches fixes

few auto-rename glitches fixes

few auto-rename glitches fixes

few auto-rename glitches fixes
This commit is contained in:
Colin Surprenant 2016-09-08 16:48:17 -04:00
parent ce68fb4706
commit 5824080871
55 changed files with 96 additions and 102 deletions

View file

@ -6,12 +6,12 @@ module LogStash
# clear the global compiled templates cache
def clear_cache
Java::ComLogstash::StringInterpolation.get_instance.clear_cache;
Java::OrgLogstash::StringInterpolation.get_instance.clear_cache;
end
# @return [Fixnum] the compiled templates cache size
def cache_size
Java::ComLogstash::StringInterpolation.get_instance.cache_size;
Java::OrgLogstash::StringInterpolation.get_instance.cache_size;
end
end
end