aboutsummaryrefslogtreecommitdiffstats
path: root/it/it-projects
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2015-09-30 12:04:46 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2015-10-02 11:48:29 +0200
commit9b8a443e7b842ad4fb115e8eea2c1ac222da3bb2 (patch)
tree0cbe9190fe760327f24f9995b83dade3b941c01c /it/it-projects
parent7748b0ff2e8df66f02170884efa29c7544ac033c (diff)
downloadsonarqube-9b8a443e7b842ad4fb115e8eea2c1ac222da3bb2.tar.gz
sonarqube-9b8a443e7b842ad4fb115e8eea2c1ac222da3bb2.zip
SONAR-6397 Use ScmInfoRepo in NewCoverageMeasuresStep
Diffstat (limited to 'it/it-projects')
-rw-r--r--it/it-projects/testing/xoo-sample-new-coverage-v2/src/main/xoo/sample/Sample.xoo6
1 files changed, 3 insertions, 3 deletions
diff --git a/it/it-projects/testing/xoo-sample-new-coverage-v2/src/main/xoo/sample/Sample.xoo b/it/it-projects/testing/xoo-sample-new-coverage-v2/src/main/xoo/sample/Sample.xoo
index 41871e123a3..83b519b4b1a 100644
--- a/it/it-projects/testing/xoo-sample-new-coverage-v2/src/main/xoo/sample/Sample.xoo
+++ b/it/it-projects/testing/xoo-sample-new-coverage-v2/src/main/xoo/sample/Sample.xoo
@@ -1,14 +1,14 @@
package sample;
public class Sample {
-
+
public Sample(int i) {
int j = i++;
}
private String myMethod() {
- if (foo == bar) {
- return "hello";
+ if (foo2 == bar2) {
+ return "hello2";
} else {
throw new IllegalStateException();
}