Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
linenumberstrue
// old API
ProducerConfig(Map<?, ?> props);
ConsumerConfig(Map<?, ?> props);
 
// new API
public ProducerConfig(Map<String, ?> props);
public ProducerConfig(Properties props);
public ConsumerConfig(Map<String, ?> props);
public ConsumerConfig(Properties props);

...