-
I'm listing some code to look at.
There is this class that seems to implement Null pattern:
~~~
Object subclass: #SpartaUnimplementedPathBuilder
uses: TSpartaPathBuilder
instanceVariableNam…
-
Dead code should be removed this is why version control exists
![image](https://user-images.githubusercontent.com/36355370/75589010-a915e000-5a2e-11ea-81b2-a8e51e49cd1b.png)
-
There are a lot of dead code fragments all over the source only visible if compiled with '-Wunused-but-set-variable'. I'm not really sure whether it is only dead code or in some cases hidden bugs.
-
```go
func (hs *HttpService) HandlerPing(w http.ResponseWriter, req *http.Request) {
defer req.Body.Close()
version, err := hs.ic.Ping()
if err != nil {
panic("WTF")
return // this line i…
Sn0rt updated
7 years ago
-
Stuff to go:
* Openseadragon
* ??
-
Hi all,
This is Qihoo360 CodeSafe Team, we found dead code issus in `yasm`, see
https://github.com/yasm/yasm/blob/e256985c4929f4e550d8f70cad5fb936f81b7b06/libyasm/bitvect.c#L300. The `break` stateme…
-
_From [wjmo...@gmail.com](https://code.google.com/u/117567618910921056910/) on March 31, 2009 10:44:36_
There's quite a bit of dead Reddit related code that isn't being used. It should be removed.
_…
-
`support/cltkDMain.c` seems to be an unused file. It also appears to be [syntactically incorrect](https://github.com/garrigue/labltk/blob/master/support/cltkDMain.c#L189).
-
```dart
void f() {
label:
{
if (true) {
print('1');
break label;
}
print('2'); // marked dead
} // marked dead
print('3'); // marked…
-
When code is generated via a proc macro there is a case which creates a false positive for the dead code warning.
Proc macro (src/lib.rs):
```rust
use proc_macro2::Span;
use quote::quote;
use s…