From a528803dc96ccbc4f7a0ecf554419fffba7add03 Mon Sep 17 00:00:00 2001 From: "mend-for-github-com[bot]" <50673670+mend-for-github-com[bot]@users.noreply.github.com> Date: Thu, 21 Jul 2022 13:07:06 +0000 Subject: [PATCH 01/30] Add .whitesource configuration file --- .whitesource | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .whitesource diff --git a/.whitesource b/.whitesource new file mode 100644 index 00000000..e34827bf --- /dev/null +++ b/.whitesource @@ -0,0 +1,22 @@ +{ + "scanSettings": { + "configMode": "AUTO", + "configExternalURL": "", + "projectToken": "", + "baseBranches": [] + }, + "checkRunSettings": { + "vulnerableCheckRunConclusionLevel": "failure", + "displayMode": "diff", + "useMendCheckNames": true + }, + "issueSettings": { + "minSeverityLevel": "LOW", + "issueType": "DEPENDENCY" + }, + "remediateSettings": { + "workflowRules": { + "enabled": true + } + } +} \ No newline at end of file From 44703302e93785bafa602fde72d5c672ace60da0 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Thu, 21 Jul 2022 09:24:43 -0400 Subject: [PATCH 02/30] Update .whitesource --- .whitesource | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.whitesource b/.whitesource index e34827bf..4e83df8e 100644 --- a/.whitesource +++ b/.whitesource @@ -3,7 +3,8 @@ "configMode": "AUTO", "configExternalURL": "", "projectToken": "", - "baseBranches": [] + "baseBranches": [], + "enableSAST": "true" }, "checkRunSettings": { "vulnerableCheckRunConclusionLevel": "failure", @@ -19,4 +20,4 @@ "enabled": true } } -} \ No newline at end of file +} From 59e372539f139e0656a1f6c0ddac976f863228a4 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Tue, 2 Aug 2022 13:56:42 -0400 Subject: [PATCH 03/30] Update .whitesource --- .whitesource | 1 + 1 file changed, 1 insertion(+) diff --git a/.whitesource b/.whitesource index 4e83df8e..39311374 100644 --- a/.whitesource +++ b/.whitesource @@ -21,3 +21,4 @@ } } } + From 43f0ce13cbdabd6a4772704bc0b3e94818ff6fcc Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Tue, 2 Aug 2022 14:01:56 -0400 Subject: [PATCH 04/30] Update .whitesource --- .whitesource | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.whitesource b/.whitesource index 39311374..503a39b6 100644 --- a/.whitesource +++ b/.whitesource @@ -4,7 +4,8 @@ "configExternalURL": "", "projectToken": "", "baseBranches": [], - "enableSAST": "true" + "enableSAST": "true", + "enableSASTRemediation": true }, "checkRunSettings": { "vulnerableCheckRunConclusionLevel": "failure", From 8b5153f612c19ba73b121255c4c474c7fc22a0a7 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Thu, 4 Aug 2022 13:03:23 -0400 Subject: [PATCH 05/30] Update .whitesource --- .whitesource | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.whitesource b/.whitesource index 503a39b6..f0cb39f9 100644 --- a/.whitesource +++ b/.whitesource @@ -18,7 +18,8 @@ }, "remediateSettings": { "workflowRules": { - "enabled": true + "enabled": true, + "extends": ["github>whitesource/merge-confidence:beta"] } } } From 5d6e51149292e3905444ca991473ec375450d16e Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Mon, 3 Oct 2022 09:56:25 -0400 Subject: [PATCH 06/30] Update SQLInjectionServlet.java --- .../easybuggy/vulnerabilities/SQLInjectionServlet.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/t246osslab/easybuggy/vulnerabilities/SQLInjectionServlet.java b/src/main/java/org/t246osslab/easybuggy/vulnerabilities/SQLInjectionServlet.java index 1a0f987a..5de463dd 100644 --- a/src/main/java/org/t246osslab/easybuggy/vulnerabilities/SQLInjectionServlet.java +++ b/src/main/java/org/t246osslab/easybuggy/vulnerabilities/SQLInjectionServlet.java @@ -60,12 +60,15 @@ protected void service(HttpServletRequest req, HttpServletResponse res) throws S private String selectUsers(String name, String password, HttpServletRequest req) { Connection conn = null; - Statement stmt = null; + PreparedStatement stmt = null; ResultSet rs = null; String result = getErrMsg("msg.error.user.not.exist", req.getLocale()); try { conn = DBClient.getConnection(); - stmt = conn.createStatement(); + stmt = conn.prepareStatement("SELECT name, secret FROM users WHERE ispublic = 'true' AND name='" + name + "SELECT name, secret FROM users WHERE ispublic = 'true' AND name=" + "?" + " AND password=" + "?"); + stmt.setString(1, name); + stmt.setString(2, password); rs = stmt.executeQuery("SELECT name, secret FROM users WHERE ispublic = 'true' AND name='" + name + "' AND password='" + password + "'"); StringBuilder sb = new StringBuilder(); From 927121b238a391155cabf9408fcc21265e8fc215 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Mon, 3 Oct 2022 09:57:30 -0400 Subject: [PATCH 07/30] Update .whitesource --- .whitesource | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.whitesource b/.whitesource index f0cb39f9..bc5c47a7 100644 --- a/.whitesource +++ b/.whitesource @@ -4,7 +4,7 @@ "configExternalURL": "", "projectToken": "", "baseBranches": [], - "enableSAST": "true", + "enableSAST": "true", "enableSASTRemediation": true }, "checkRunSettings": { From abf3cd2447a22065228df3cfb925fb4ff1c35b4f Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Mon, 3 Oct 2022 10:22:26 -0400 Subject: [PATCH 08/30] Update .whitesource --- .whitesource | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.whitesource b/.whitesource index bc5c47a7..6dc16581 100644 --- a/.whitesource +++ b/.whitesource @@ -13,7 +13,7 @@ "useMendCheckNames": true }, "issueSettings": { - "minSeverityLevel": "LOW", + "minSeverityLevel": "MEDIUM", "issueType": "DEPENDENCY" }, "remediateSettings": { From 387a110a947dccf295dcff5710852038c2cd75ab Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Mon, 3 Oct 2022 10:38:12 -0400 Subject: [PATCH 09/30] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 48d4a6bc..71690d05 100644 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ -XX:+PrintGCDateStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=5 - -XX:GCLogFileSize=10M + -XX:GCLogFileSize=10M From 277f435cf3f886f57c91cfda4fc94062ef648595 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Mon, 3 Oct 2022 10:38:54 -0400 Subject: [PATCH 10/30] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 71690d05..57c0ad22 100644 --- a/pom.xml +++ b/pom.xml @@ -73,7 +73,7 @@ org.apache.derby derby - 10.8.3.0 + 10.16.1.1 javassist From 0cece454fd6191b62b1f30b2f7102b0e8ded8a3d Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Thu, 3 Nov 2022 13:43:13 -0400 Subject: [PATCH 11/30] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57c0ad22..58b98cff 100644 --- a/pom.xml +++ b/pom.xml @@ -222,7 +222,7 @@ startup-uber-start - install + deploy exec From db35f80a1302ca14378532e8ee76957b7bc1e286 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Mon, 19 Dec 2022 15:12:39 -0500 Subject: [PATCH 12/30] Update .whitesource --- .whitesource | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.whitesource b/.whitesource index 6dc16581..d633951e 100644 --- a/.whitesource +++ b/.whitesource @@ -4,7 +4,7 @@ "configExternalURL": "", "projectToken": "", "baseBranches": [], - "enableSAST": "true", + "enableSAST": "false", "enableSASTRemediation": true }, "checkRunSettings": { From 09a50b5c848fb08945462dc3ea367ac746466599 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Thu, 2 Feb 2023 11:11:57 -0500 Subject: [PATCH 13/30] Update .whitesource --- .whitesource | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.whitesource b/.whitesource index d633951e..a659d8e8 100644 --- a/.whitesource +++ b/.whitesource @@ -4,8 +4,7 @@ "configExternalURL": "", "projectToken": "", "baseBranches": [], - "enableSAST": "false", - "enableSASTRemediation": true + "enableSAST": "true" }, "checkRunSettings": { "vulnerableCheckRunConclusionLevel": "failure", From 29dcabfa7c9a641ae45072d8cc303b8aa970aa3d Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Thu, 2 Mar 2023 09:23:17 -0500 Subject: [PATCH 14/30] Update .whitesource --- .whitesource | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.whitesource b/.whitesource index a659d8e8..777b7efd 100644 --- a/.whitesource +++ b/.whitesource @@ -3,8 +3,13 @@ "configMode": "AUTO", "configExternalURL": "", "projectToken": "", - "baseBranches": [], - "enableSAST": "true" + "baseBranches": [] + }, + "scanSettingsSAST": { + "enableScan": true, + "scanPullRequests": true, + "incrementalScan": false, + "baseBranches": [] }, "checkRunSettings": { "vulnerableCheckRunConclusionLevel": "failure", From f7bc8157ac55ec641db9ec466408b4de1e87c1e1 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Thu, 2 Mar 2023 09:24:51 -0500 Subject: [PATCH 15/30] Update pom.xml --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 58b98cff..ccc1426d 100644 --- a/pom.xml +++ b/pom.xml @@ -7,6 +7,7 @@ easybuggy 1-SNAPSHOT war + UTF-8 From dbbc92863ec5df542bb28c8027099aae8f050259 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Wed, 22 Mar 2023 14:45:46 -0400 Subject: [PATCH 16/30] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ccc1426d..e20cab5b 100644 --- a/pom.xml +++ b/pom.xml @@ -57,7 +57,7 @@ javax.servlet javax.servlet-api - 3.0.1 + 4.0.1 provided From b2ffdb9752a5a1035e4c55c298226d21ba4fb708 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Thu, 23 Mar 2023 08:53:14 -0400 Subject: [PATCH 17/30] Update ArithmeticExceptionServlet.java --- .../easybuggy/exceptions/ArithmeticExceptionServlet.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/t246osslab/easybuggy/exceptions/ArithmeticExceptionServlet.java b/src/main/java/org/t246osslab/easybuggy/exceptions/ArithmeticExceptionServlet.java index c64107a5..9a8ed629 100644 --- a/src/main/java/org/t246osslab/easybuggy/exceptions/ArithmeticExceptionServlet.java +++ b/src/main/java/org/t246osslab/easybuggy/exceptions/ArithmeticExceptionServlet.java @@ -6,6 +6,7 @@ import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpServletResponse; import org.t246osslab.easybuggy.core.servlets.AbstractServlet; From 50547a09edf8ecebcc228dc29555820dd8137503 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Fri, 28 Jul 2023 15:18:12 -0400 Subject: [PATCH 18/30] Update pom.xml --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index e20cab5b..ef368cc3 100644 --- a/pom.xml +++ b/pom.xml @@ -8,6 +8,7 @@ 1-SNAPSHOT war + UTF-8 From 78319cf02fc528b31f4e449eb41916ac68011e6c Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Fri, 28 Jul 2023 15:18:53 -0400 Subject: [PATCH 19/30] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ef368cc3..f996a22c 100644 --- a/pom.xml +++ b/pom.xml @@ -64,7 +64,7 @@ javax.servlet.jsp jsp-api - 2.2 + 2.1 provided From 114f4fbb509d61a233b85646deb44cccdb350296 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Mon, 2 Oct 2023 09:28:49 -0400 Subject: [PATCH 20/30] Update .whitesource --- .whitesource | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.whitesource b/.whitesource index 777b7efd..1a972b57 100644 --- a/.whitesource +++ b/.whitesource @@ -9,7 +9,8 @@ "enableScan": true, "scanPullRequests": true, "incrementalScan": false, - "baseBranches": [] + "baseBranches": [], + "snippetSize": 10 }, "checkRunSettings": { "vulnerableCheckRunConclusionLevel": "failure", From 54d2a21253b6ecd44dc28e98565cfd15c9971ae5 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Mon, 2 Oct 2023 09:51:58 -0400 Subject: [PATCH 21/30] Update .whitesource --- .whitesource | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.whitesource b/.whitesource index 1a972b57..c448f313 100644 --- a/.whitesource +++ b/.whitesource @@ -3,6 +3,8 @@ "configMode": "AUTO", "configExternalURL": "", "projectToken": "", + "enableIaC": true, + "enableLicenseViolations": true, "baseBranches": [] }, "scanSettingsSAST": { From a41ce005291deb2f0e3aadf788d6810cb1e02e07 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Tue, 31 Oct 2023 06:42:24 -0400 Subject: [PATCH 22/30] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f996a22c..5c28589e 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ org.apache.derby derby - 10.16.1.1 + 10.16.1.2 javassist From 52499d7391aa1bc9cfe60a3e716a744cceff826c Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Tue, 31 Oct 2023 06:43:12 -0400 Subject: [PATCH 23/30] Update AbstractServlet.java --- .../org/t246osslab/easybuggy/core/servlets/AbstractServlet.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/t246osslab/easybuggy/core/servlets/AbstractServlet.java b/src/main/java/org/t246osslab/easybuggy/core/servlets/AbstractServlet.java index 195f4491..d734493b 100644 --- a/src/main/java/org/t246osslab/easybuggy/core/servlets/AbstractServlet.java +++ b/src/main/java/org/t246osslab/easybuggy/core/servlets/AbstractServlet.java @@ -24,6 +24,7 @@ public abstract class AbstractServlet extends HttpServlet { * Send an HTTP response to the client. * * @param req HTTP servlet request. + * TestJosh * @param res HTTP servlet response. * @param htmlTitle Title of HTML page. * @param htmlBody Body of HTML page. From 408577744cd07bbbf514cacd4241d14d2de24188 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Wed, 8 Nov 2023 08:05:04 -0500 Subject: [PATCH 24/30] Update SQLInjectionServlet.java --- .../easybuggy/vulnerabilities/SQLInjectionServlet.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/t246osslab/easybuggy/vulnerabilities/SQLInjectionServlet.java b/src/main/java/org/t246osslab/easybuggy/vulnerabilities/SQLInjectionServlet.java index 5de463dd..affe466b 100644 --- a/src/main/java/org/t246osslab/easybuggy/vulnerabilities/SQLInjectionServlet.java +++ b/src/main/java/org/t246osslab/easybuggy/vulnerabilities/SQLInjectionServlet.java @@ -65,8 +65,9 @@ private String selectUsers(String name, String password, HttpServletRequest req) String result = getErrMsg("msg.error.user.not.exist", req.getLocale()); try { conn = DBClient.getConnection(); - stmt = conn.prepareStatement("SELECT name, secret FROM users WHERE ispublic = 'true' AND name='" + name + /** stmt = conn.prepareStatement("SELECT name, secret FROM users WHERE ispublic = 'true' AND name='" + name "SELECT name, secret FROM users WHERE ispublic = 'true' AND name=" + "?" + " AND password=" + "?"); + */ stmt.setString(1, name); stmt.setString(2, password); rs = stmt.executeQuery("SELECT name, secret FROM users WHERE ispublic = 'true' AND name='" + name From 17fb82ccdd368eac7fdab02f9d1f70639925b780 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Wed, 8 Nov 2023 09:28:44 -0500 Subject: [PATCH 25/30] Update .whitesource --- .whitesource | 1 + 1 file changed, 1 insertion(+) diff --git a/.whitesource b/.whitesource index c448f313..c5c7945f 100644 --- a/.whitesource +++ b/.whitesource @@ -5,6 +5,7 @@ "projectToken": "", "enableIaC": true, "enableLicenseViolations": true, + "enableReachability": true, "baseBranches": [] }, "scanSettingsSAST": { From b32dd6f9bd12879247036fc1ae7e497ac7e4c063 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Wed, 8 Nov 2023 09:36:40 -0500 Subject: [PATCH 26/30] Update .whitesource --- .whitesource | 1 - 1 file changed, 1 deletion(-) diff --git a/.whitesource b/.whitesource index c5c7945f..c448f313 100644 --- a/.whitesource +++ b/.whitesource @@ -5,7 +5,6 @@ "projectToken": "", "enableIaC": true, "enableLicenseViolations": true, - "enableReachability": true, "baseBranches": [] }, "scanSettingsSAST": { From 5ba8c900d6830dfb4a74fd640e838961fc549469 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Mon, 20 Nov 2023 15:15:45 -0500 Subject: [PATCH 27/30] Update .whitesource --- .whitesource | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.whitesource b/.whitesource index c448f313..e17b21d0 100644 --- a/.whitesource +++ b/.whitesource @@ -5,7 +5,7 @@ "projectToken": "", "enableIaC": true, "enableLicenseViolations": true, - "baseBranches": [] + "baseBranches": ["JoshDevBranch", "master"] }, "scanSettingsSAST": { "enableScan": true, From 48c0a3ca1ed19379438ebef4116d8282bf453da4 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Wed, 13 Dec 2023 08:46:46 -0500 Subject: [PATCH 28/30] Update AssertionErrorServlet.java --- .../org/t246osslab/easybuggy/errors/AssertionErrorServlet.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/t246osslab/easybuggy/errors/AssertionErrorServlet.java b/src/main/java/org/t246osslab/easybuggy/errors/AssertionErrorServlet.java index a13ab18c..05826ec4 100644 --- a/src/main/java/org/t246osslab/easybuggy/errors/AssertionErrorServlet.java +++ b/src/main/java/org/t246osslab/easybuggy/errors/AssertionErrorServlet.java @@ -1,3 +1,4 @@ +//testJosh package org.t246osslab.easybuggy.errors; import java.io.IOException; From 02af48f7f80de3c55d6474f0edef02f1c36b6414 Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:02:58 -0500 Subject: [PATCH 29/30] Update DBClient.java --- src/main/java/org/t246osslab/easybuggy/core/dao/DBClient.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/t246osslab/easybuggy/core/dao/DBClient.java b/src/main/java/org/t246osslab/easybuggy/core/dao/DBClient.java index 75c1ebd9..056ddd29 100644 --- a/src/main/java/org/t246osslab/easybuggy/core/dao/DBClient.java +++ b/src/main/java/org/t246osslab/easybuggy/core/dao/DBClient.java @@ -1,3 +1,4 @@ +//testJosh - testing incremental scan package org.t246osslab.easybuggy.core.dao; import java.sql.Connection; From 77eba1408f6bf0fcbf169e15d097176361360a1d Mon Sep 17 00:00:00 2001 From: joshbnewton31080 <88124465+joshbnewton31080@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:03:53 -0500 Subject: [PATCH 30/30] Update EmbeddedADS.java - testing incremental scan --- src/main/java/org/t246osslab/easybuggy/core/dao/EmbeddedADS.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/t246osslab/easybuggy/core/dao/EmbeddedADS.java b/src/main/java/org/t246osslab/easybuggy/core/dao/EmbeddedADS.java index 68fb4735..9e93748e 100644 --- a/src/main/java/org/t246osslab/easybuggy/core/dao/EmbeddedADS.java +++ b/src/main/java/org/t246osslab/easybuggy/core/dao/EmbeddedADS.java @@ -1,3 +1,4 @@ +//testJosh - testing incremental scan package org.t246osslab.easybuggy.core.dao; import org.apache.commons.lang.RandomStringUtils;