SGF-751 - Polish.

This commit is contained in:
John Blum
2018-06-09 18:59:04 -07:00
parent da7305a916
commit 124abd588a
4 changed files with 4 additions and 193 deletions

View File

@@ -41,8 +41,8 @@ public class KeyInterest<K> extends Interest<K> {
super(key, policy, durable);
}
public KeyInterest(K key, InterestResultPolicy policy, boolean durable, boolean recieveValues) {
super(key, policy, durable, recieveValues);
public KeyInterest(K key, InterestResultPolicy policy, boolean durable, boolean receiveValues) {
super(key, policy, durable, receiveValues);
}
/**
@@ -58,7 +58,7 @@ public class KeyInterest<K> extends Interest<K> {
*/
@Override
public void setType(Type type) {
logger.warn(String.format("Setting the Type [%1$s] of interest on [%2$s] is ignored",
logger.warn(String.format("Setting the Type [%1$s] of Interest on [%2$s] is ignored",
type, getClass().getName()));
}
}

View File

@@ -78,7 +78,7 @@ public class RegexInterest extends Interest<String> {
*/
@Override
public void setType(Type type) {
logger.warn(String.format("Setting the Type [%1$s] of interest on [%2$s] is ignored",
logger.warn(String.format("Setting the Type [%1$s] of Interest on [%2$s] is ignored",
type, getClass().getName()));
}
}