- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {Charset c =
String charsetName;Charset.forName(charsetName)
Charset.defaultCharset()
ContentType contentType;contentType.getCharset()
- Smart code suggestions by Codota
}
/** * {@inheritDoc} */ @Override public void addDefaultData(DefaultData defaultData) { if (null == threadLocalInvocationData.get()) { LOG.error("thread data NULL!!!!"); return; } saveDataObject(defaultData); // delegate to real core service in case of the span if (AbstractSpan.class.isAssignableFrom(defaultData.getClass())) { realCoreService.addDefaultData(defaultData); } }