This is an automated email from the ASF dual-hosted git repository.
shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git
The following commit(s) were added to refs/heads/main by this push:
new 4171c9e Update scalafmt-core to 3.8.6
4171c9e is described below
commit 4171c9e2564e9f1bfc847eb4c2bd4f5cc8e34361
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Feb 1 00:30:27 2025 +0000
Update scalafmt-core to 3.8.6
- Reformat with scalafmt 3.8.6
- Executed command: scalafmt --non-interactive
- Add 'Reformat with scalafmt 3.8.6' to .git-blame-ignore-revs
---
.git-blame-ignore-revs | 3 +++
.scalafmt.conf | 2 +-
debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala | 3 ++-
3 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs
index 3a086b3..0ef7594 100644
--- a/.git-blame-ignore-revs
+++ b/.git-blame-ignore-revs
@@ -1,2 +1,5 @@
# Scala Steward: Reformat with scalafmt 3.8.3
ff29859b7afa6c0f5a5b90c96be6e75cdb098ef1
+
+# Scala Steward: Reformat with scalafmt 3.8.6
+2235cc42f746135a13bd7030c721c269bd6364e1
diff --git a/.scalafmt.conf b/.scalafmt.conf
index 273cdd4..fd5cf66 100644
--- a/.scalafmt.conf
+++ b/.scalafmt.conf
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-version = "3.8.3"
+version = "3.8.6"
maxColumn = 120
rewrite.rules = [SortImports, RedundantBraces]
runner.dialect = scala212
diff --git
a/debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
b/debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
index 2f4417f..020d626 100644
--- a/debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
+++ b/debugger/src/main/scala/org.apache.daffodil.debugger.dap/DAPodil.scala
@@ -372,7 +372,8 @@ class DAPodil(
session.sendResponse(
request.respondFailure(
Some(
- s"couldn't find scopes for frame ${args.frameId}:
${data.stack.frames.map(f => f.id -> f.stackFrame.name)}; this is likely due to
the front end advancing via 'continue' or 'next' before this request was
eventually made"
+ s"couldn't find scopes for frame ${args.frameId}:
${data.stack.frames
+ .map(f => f.id -> f.stackFrame.name)}; this is likely
due to the front end advancing via 'continue' or 'next' before this request was
eventually made"
)
)
)