this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

tools/fix: remove unused code

When refactoring cue/load, I noticed that some pieces of code
were unused, which makes it less obvious what kinds of things
can be done. I used `staticcheck` to point out many other
places in the code that are unused.

This is one of those places. I feel it's better to remove this code
even if it might be used in the future (it's always there to be found
in the git history).

Signed-off-by: Roger Peppe <rogpeppe@gmail.com>
Change-Id: I576f48e4bbdd4780b05dd1f07582c5b966f16856
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/549285
TryBot-Result: CUEcueckoo <cueckoo+gerrithub@cuelang.org>
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Unity-Result: CUEcueckoo <cueckoo+gerrithub@cuelang.org>

authored by

Roger Peppe and committed by
Daniel Martí
1f888b50 97cba0bd

+1 -2
+1 -2
tools/fix/fix.go
··· 30 30 type Option func(*options) 31 31 32 32 type options struct { 33 - simplify bool 34 - deprecated bool 33 + simplify bool 35 34 } 36 35 37 36 // Simplify enables fixes that simplify the code, but are not strictly