[Fb-contrib-commit] SF.net SVN: fb-contrib: [556] trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/de
Brought to you by:
dbrosius
From: <dbr...@us...> - 2006-06-06 16:04:46
|
Revision: 556 Author: dbrosius Date: 2006-06-06 09:04:36 -0700 (Tue, 06 Jun 2006) ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=556&view=rev Log Message: ----------- loosen permissions Modified Paths: -------------- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/RedundantMethodCalls.java Modified: trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/RedundantMethodCalls.java =================================================================== --- trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/RedundantMethodCalls.java 2006-06-06 16:02:16 UTC (rev 555) +++ trunk/fb-contrib/src/com/mebigfatguy/fbcontrib/detect/RedundantMethodCalls.java 2006-06-06 16:04:36 UTC (rev 556) @@ -198,27 +198,27 @@ /** * contains information about a method call */ - private static class MethodCall + static class MethodCall { private String methodName; private String methodSignature; private Object[] methodParms; - private MethodCall(String name, String signature, Object[] parms) { + public MethodCall(String name, String signature, Object[] parms) { methodName = name; methodSignature = signature; methodParms = parms; } - private String getName() { + public String getName() { return methodName; } - private String getSignature() { + public String getSignature() { return methodSignature; } - private Object[] getParms() { + public Object[] getParms() { return methodParms; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |