Skip to content

Commit

Permalink
When importing example test plan JMeter displays an NullPointerException
Browse files Browse the repository at this point in the history
Bugzilla Id: 64957
  • Loading branch information
FSchumacher committed Dec 6, 2020
1 parent e880ca5 commit ba18592
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ public static void updateRecentFileMenuItems(List<JComponent> menuItems, String
boolean alreadyExists = false;
for(int i = 0; i < NUMBER_OF_MENU_ITEMS; i++) {
String recentFilePath = getRecentFile(i);
if (recentFilePath == null) {
continue;
}
if(!loadedFileName.equals(recentFilePath)) {
newRecentFiles.add(recentFilePath);
}
Expand Down
1 change: 1 addition & 0 deletions xdocs/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ Summary

<h3>General</h3>
<ul>
<li><bug>64957</bug>When importing example test plan JMeter displays an NullPointerException</li>
</ul>

<!-- =================== Thanks =================== -->
Expand Down

0 comments on commit ba18592

Please sign in to comment.