Commit 7caf3940 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #4806 from izeye/polish-20151218

* pr/4806:
  Fix typos
parents 01d01274 c09a14a1
...@@ -80,7 +80,7 @@ public class OpenTsdbGaugeWriter implements GaugeWriter { ...@@ -80,7 +80,7 @@ public class OpenTsdbGaugeWriter implements GaugeWriter {
private OpenTsdbNamingStrategy namingStrategy = new DefaultOpenTsdbNamingStrategy(); private OpenTsdbNamingStrategy namingStrategy = new DefaultOpenTsdbNamingStrategy();
/** /**
* Creates a new {@code OpenTsdbGauageWriter} with the default connect (10 seconds) * Creates a new {@code OpenTsdbGaugeWriter} with the default connect (10 seconds)
* and read (30 seconds) timeouts. * and read (30 seconds) timeouts.
*/ */
public OpenTsdbGaugeWriter() { public OpenTsdbGaugeWriter() {
......
...@@ -133,10 +133,10 @@ public class ConfigurationWarningsApplicationContextInitializer ...@@ -133,10 +133,10 @@ public class ConfigurationWarningsApplicationContextInitializer
private static final Set<String> PROBLEM_PACKAGES; private static final Set<String> PROBLEM_PACKAGES;
static { static {
Set<String> pacakges = new HashSet<String>(); Set<String> packages = new HashSet<String>();
pacakges.add("org.springframework"); packages.add("org.springframework");
pacakges.add("org"); packages.add("org");
PROBLEM_PACKAGES = Collections.unmodifiableSet(pacakges); PROBLEM_PACKAGES = Collections.unmodifiableSet(packages);
} }
@Override @Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment