<No Comment Entered>

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@550 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
David Craine
2002-07-29 18:37:52 +00:00
parent aa8b366e2d
commit 0affb68053
3 changed files with 18 additions and 0 deletions

View File

@ -10,4 +10,6 @@ class UnusedFormalParam1 {
private void t2(){
}
}

View File

@ -0,0 +1,11 @@
class UnusedFormalParam2 {
private void readObject (java.io.ObjectInputStream s) throws java.io.IOException
{
String str = s.readUTF ();
String[] args = null;
java.util.Properties props = null;
org.omg.CORBA.Object obj = org.omg.CORBA.ORB.init (args, props).string_to_object (str);
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
_set_delegate (delegate);
}
}

View File

@ -0,0 +1,5 @@
class UnusedFormalParam3 {
private void t1(String s) {
s.toString();
}
}