patch following need braces check.

This commit is contained in:
Rick Giles 2002-11-02 12:54:09 +00:00
parent da7118ff79
commit 04eaaf55e1
2 changed files with 0 additions and 9 deletions

View File

@ -368,12 +368,6 @@ public class Configuration
return getBooleanProperty(Defn.IGNORE_CAST_WHITESPACE_PROP);
}
/** @return whether to ignore checks for braces **/
boolean isIgnoreBraces()
{
return getBooleanProperty(Defn.IGNORE_BRACES_PROP);
}
/** @return the File of the cache file **/
String getCacheFile()
{

View File

@ -52,8 +52,6 @@ public interface Defn
String IGNORE_WHITESPACE_PROP = "checkstyle.ignore.whitespace";
/** property name for ignoring whitespace after casts **/
String IGNORE_CAST_WHITESPACE_PROP = "checkstyle.ignore.whitespace.cast";
/** property name for ignoring braces **/
String IGNORE_BRACES_PROP = "checkstyle.ignore.braces";
/** property name for cache file **/
String CACHE_FILE_PROP = "checkstyle.cache.file";
@ -78,7 +76,6 @@ public interface Defn
{
ALLOW_PACKAGE_PROP,
ALLOW_PROTECTED_PROP,
IGNORE_BRACES_PROP,
IGNORE_CAST_WHITESPACE_PROP,
IGNORE_WHITESPACE_PROP,
JAVADOC_CHECK_UNUSED_THROWS_PROP,