From 7b4377ad9d8a7205416df8d6217ef2b010f89481 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Wed, 22 Jan 2025 16:07:17 +0100 Subject: vendor: delete --- .../sergi/go-diff/diffmatchpatch/mathutil.go | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 vendor/github.com/sergi/go-diff/diffmatchpatch/mathutil.go (limited to 'vendor/github.com/sergi/go-diff/diffmatchpatch/mathutil.go') diff --git a/vendor/github.com/sergi/go-diff/diffmatchpatch/mathutil.go b/vendor/github.com/sergi/go-diff/diffmatchpatch/mathutil.go deleted file mode 100644 index aed242bc6..000000000 --- a/vendor/github.com/sergi/go-diff/diffmatchpatch/mathutil.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) 2012-2016 The go-diff authors. All rights reserved. -// https://github.com/sergi/go-diff -// See the included LICENSE file for license details. -// -// go-diff is a Go implementation of Google's Diff, Match, and Patch library -// Original library is Copyright (c) 2006 Google Inc. -// http://code.google.com/p/google-diff-match-patch/ - -package diffmatchpatch - -func min(x, y int) int { - if x < y { - return x - } - return y -} - -func max(x, y int) int { - if x > y { - return x - } - return y -} -- cgit mrf-deployment