Dead code is code in the source code of a program which is executed but whose result is never used or a code that can never be reached or used.
What tools do you use to find unused/dead code in large java projects? Our product has been in development …
java refactoring dead-codestruct SemanticDirection; fn main() {} warning: struct is never used: `SemanticDirection` --> src/main.rs:1:1 | 1 | struct SemanticDirection; | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: #[warn(dead_…
warnings compiler-warnings rust dead-codeThere is an inspection "Unused declaration" which can find all unused code in Intellij Idea. (see this question) But I …
java intellij-idea dead-codeHow can you tell if a PL/SQL Package, Procedure, or Function is being used? Is there an Oracle table …
oracle plsql statistics dead-codeI have legacy C++ code that I'm supposed to remove unused code from. The problem is that the code base …
c++ optimization dead-codeHow would you go about dead code detection in C/C++ code? I have a pretty large code base to …
c++ automation static-analysis legacy-code dead-codeWe are refactoring a legacy web app and as a result are "killing" quite a lot of JavaScript code but …
javascript refactoring dead-codeIn order to refactor a client-side project, i'm looking for a safe way to find (and delete) unused code. What …
javascript reactjs refactoring dead-codeDoes anyone know why: public void foo() { System.out.println("Hello"); return; System.out.println("World!"); } Would be reported as …
java eclipse dead-code unreachable-codeI am trying to remove unused functions from my project. Since it has thousands of lines, this takes forever. Code …
javascript dead-code