From 41f6e3ba2548486f1e54cc4aa831c772e3e50e7b Mon Sep 17 00:00:00 2001 From: Ian Prins Date: Mon, 11 Nov 2019 19:34:32 -0500 Subject: [PATCH] Update Example_v0.java --- Example_v0.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Example_v0.java b/Example_v0.java index c696b4b..905f341 100644 --- a/Example_v0.java +++ b/Example_v0.java @@ -6,11 +6,11 @@ public A(){ A.X = 5; } - public int fcn(){ + public int test(){ return A.X * A.Y; } - - public int test(){ + + public int fcn(){ return A.X * A.Y; } -} \ No newline at end of file +}