Minor cleanup
This commit is contained in:
parent
050298802a
commit
06b052c4d9
|
@ -217,11 +217,13 @@ public interface Instrumenter {
|
||||||
public abstract Map<? extends ElementMatcher<? super MethodDescription>, String> transformers();
|
public abstract Map<? extends ElementMatcher<? super MethodDescription>, String> transformers();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A map of {class-name -> context-class-name}. Keys (and their subclasses) will be associated
|
* Context stores to define for this instrumentation.
|
||||||
* with a context of the value.
|
*
|
||||||
|
* <p>A map of {class-name -> context-class-name}. Keys (and their subclasses) will be
|
||||||
|
* associated with a context of the value.
|
||||||
*/
|
*/
|
||||||
public Map<String, String> contextStore() {
|
public Map<String, String> contextStore() {
|
||||||
return Collections.EMPTY_MAP;
|
return Collections.emptyMap();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected boolean defaultEnabled() {
|
protected boolean defaultEnabled() {
|
||||||
|
|
Loading…
Reference in New Issue