Commit f7cc22c
TLS-Attacker Developer
Fix variable hiding issues in BulkScanWorkerManager and MongoPersistenceProvider
- Renamed local variable 'instance' to 'manager' in BulkScanWorkerManager.handleStatic() to avoid shadowing the static field
- Renamed parameter 'serializers' to 'serializersToRegister' in MongoPersistenceProvider.registerSerializer() to avoid shadowing the static field
- Renamed parameter 'modules' to 'modulesToRegister' in MongoPersistenceProvider.registerModule() to avoid shadowing the static field
These changes resolve the variable hiding warnings identified in issue #17.1 parent 47872ac commit f7cc22c
File tree
2 files changed
+6
-6
lines changed- src/main/java/de/rub/nds/crawler
- core
- persistence
2 files changed
+6
-6
lines changedLines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
45 | | - | |
| 44 | + | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
68 | | - | |
| 67 | + | |
| 68 | + | |
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
| |||
79 | 79 | | |
80 | 80 | | |
81 | 81 | | |
82 | | - | |
83 | | - | |
| 82 | + | |
| 83 | + | |
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
| |||
0 commit comments