diff --git a/dashboard/src/plugin-test/subproject1/src/java/org/apache/maven/dashboard/test/subproject1/Sample.java b/dashboard/src/plugin-test/subproject1/src/java/org/apache/maven/dashboard/test/subproject1/Sample.java index aa24913c..a317d2f4 100644 --- a/dashboard/src/plugin-test/subproject1/src/java/org/apache/maven/dashboard/test/subproject1/Sample.java +++ b/dashboard/src/plugin-test/subproject1/src/java/org/apache/maven/dashboard/test/subproject1/Sample.java @@ -61,7 +61,7 @@ package org.apache.maven.dashboard.test.subproject1; * * @author Vincent Massol * - * @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... + } } } \ No newline at end of file