Skip to content

Commit cfad616

Browse files
committed
Fix typo
1 parent fdf175a commit cfad616

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/org/netbeans/modules/php/wordpress/ui/status/DebugStatusLineElement.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,23 +275,23 @@ public String getVersion(FileObject version) {
275275
* @return debug level
276276
*/
277277
public String getDebugLevel(FileObject config) {
278-
String debubLv = ""; // NOI18N
278+
String debugLv = ""; // NOI18N
279279
Pattern pattern = Pattern.compile(DEBUG_REGEX);
280280

281281
try {
282282
List<String> lines = config.asLines();
283283
for (String line : lines) {
284284
Matcher matcher = pattern.matcher(line);
285285
if (matcher.find()) {
286-
debubLv = matcher.group(1);
286+
debugLv = matcher.group(1);
287287
break;
288288
}
289289
}
290290
} catch (IOException ex) {
291291
Exceptions.printStackTrace(ex);
292292
}
293293

294-
return debubLv;
294+
return debugLv;
295295
}
296296

297297
/**

0 commit comments

Comments
 (0)