From 5d1107fa6ee1d41ec54f55f5fe8cfdce2889a222 Mon Sep 17 00:00:00 2001 From: Phillip Pavlich Date: Sat, 11 Jan 2020 14:59:02 -0500 Subject: [PATCH 1/2] Update file v0 This change is for testing purposes only. do not merge leave the PR open --- Example_v0.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Example_v0.java b/Example_v0.java index 05dc9ea..64db422 100644 --- a/Example_v0.java +++ b/Example_v0.java @@ -15,14 +15,14 @@ public int test(){ } public int test(){ - return 15 + 26; + return 25 + 31; } public int test3(){ return 999 - 25; } - public int test4(){ + public int test5(){ return 999 - 25; } } From c5496e8819bff72090d6df9a6fc3ed1c2612fd03 Mon Sep 17 00:00:00 2001 From: Phillip Pavlich Date: Sat, 11 Jan 2020 15:00:30 -0500 Subject: [PATCH 2/2] Update v1 file This change is for testing purposes only. do not merge leave the PR open --- Example_v1.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Example_v1.java b/Example_v1.java index 69e97d8..092964b 100644 --- a/Example_v1.java +++ b/Example_v1.java @@ -4,11 +4,11 @@ public class B { private static int third = 52; public B(){ - B.first = 21; + B.first = 45; } - public int add(){ - return B.first + B.second; + public int subtract(){ + return B.first - B.second; } public int mult(){