Added Simian total duplicate line aggregator

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115101 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol 2004-04-30 14:47:11 +00:00
parent eb21a3ce05
commit caa1381622

View File

@ -61,7 +61,7 @@ package org.apache.maven.dashboard.test.subproject1;
*
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
*
* @version $Id: Sample.java,v 1.1 2003/11/17 21:36:58 vmassol Exp $
* @version $Id: Sample.java,v 1.2 2004/04/30 14:47:11 vmassol Exp $
*/
public class Sample
{
@ -72,5 +72,36 @@ public class Sample
public void someMethod()
{
new Boolean(true);
try
{
// some duplications for Simian...
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
// nothing...
}
}
public void someOtherMethod()
{
new Boolean(true);
try
{
// some duplications for Simian...
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
// nothing...
}
}
}