Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions plugin/UserSettingsImplementation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* limitations under the License.
*/


Copilot AI Apr 20, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are now two consecutive blank lines between the license header and the first include. This appears inconsistent with nearby files (e.g., plugin/UserSettings.cpp keeps a single blank line before includes) and adds unnecessary whitespace—please drop the extra empty line.

Suggested change

Copilot uses AI. Check for mistakes.
#include "UserSettingsImplementation.h"
#include <sys/prctl.h>
#include <regex>
Expand All @@ -25,6 +26,7 @@
#include <fstream>
#include "tracing/Logging.h"


Copilot AI Mar 9, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This adds an extra blank line between the include block and the namespace, creating a whitespace-only change and making the diff noisier. Consider keeping a single blank line here for consistency with the surrounding style.

Suggested change

Copilot uses AI. Check for mistakes.

Copilot AI Apr 15, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This adds an extra blank line between the includes and the namespace declaration, creating a whitespace-only change and slightly reducing consistency with other files in this module (which typically have a single blank line here). Consider removing the extra empty line to keep diffs clean and formatting consistent.

Suggested change

Copilot uses AI. Check for mistakes.

Copilot AI Apr 20, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are now two consecutive blank lines between the include block and the start of the namespace. To keep formatting consistent and reduce diff noise, remove the extra empty line.

Suggested change

Copilot uses AI. Check for mistakes.
namespace WPEFramework {
namespace Plugin {

Expand Down
Loading