We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf175a commit cfad616Copy full SHA for cfad616
1 file changed
src/org/netbeans/modules/php/wordpress/ui/status/DebugStatusLineElement.java
@@ -275,23 +275,23 @@ public String getVersion(FileObject version) {
275
* @return debug level
276
*/
277
public String getDebugLevel(FileObject config) {
278
- String debubLv = ""; // NOI18N
+ String debugLv = ""; // NOI18N
279
Pattern pattern = Pattern.compile(DEBUG_REGEX);
280
281
try {
282
List<String> lines = config.asLines();
283
for (String line : lines) {
284
Matcher matcher = pattern.matcher(line);
285
if (matcher.find()) {
286
- debubLv = matcher.group(1);
+ debugLv = matcher.group(1);
287
break;
288
}
289
290
} catch (IOException ex) {
291
Exceptions.printStackTrace(ex);
292
293
294
- return debubLv;
+ return debugLv;
295
296
297
/**
0 commit comments