Author: britter
Date: Tue Nov 3 21:01:39 2015
New Revision: 1712408
URL: http://svn.apache.org/viewvc?rev=1712408&view=rev
Log:
Remove redundant access modifiers from interface definitions
Modified:
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/DescribeTestCase.java
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/testbeans/MappedPropertyTestInterface.java
Modified:
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/DescribeTestCase.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/DescribeTestCase.java?rev=1712408&r1=1712407&r2=1712408&view=diff
==============================================================================
---
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/DescribeTestCase.java
(original)
+++
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/DescribeTestCase.java
Tue Nov 3 21:01:39 2015
@@ -161,7 +161,7 @@ public class DescribeTestCase {
assertEquals("publicFoo Value", "PublicFoo Value",
result.get("publicFoo"));
}
- public static interface XY {
+ public interface XY {
String getX();
String getY();
Modified:
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/testbeans/MappedPropertyTestInterface.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/testbeans/MappedPropertyTestInterface.java?rev=1712408&r1=1712407&r2=1712408&view=diff
==============================================================================
---
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/testbeans/MappedPropertyTestInterface.java
(original)
+++
commons/sandbox/beanutils2/trunk/src/test/java/org/apache/commons/beanutils2/testbeans/MappedPropertyTestInterface.java
Tue Nov 3 21:01:39 2015
@@ -25,8 +25,8 @@ package org.apache.commons.beanutils2.te
*/
public interface MappedPropertyTestInterface {
- public String getMapproperty(String key);
+ String getMapproperty(String key);
- public void setMapproperty(String key, String value);
+ void setMapproperty(String key, String value);
}