-
Notifications
You must be signed in to change notification settings - Fork 8
Added WebviewManager and CefBrowser #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added some comments - mostly cleanup - you can replace add some DEBUG logs where you see fit.
Also - please enrich PR description please
| addSection("Location:", "row: " + node.getRowStart() + " col: " + node.getColStart()); | ||
| addSection("Reason:", node.getReason()); | ||
| if (webviewManager == null || !webviewManager.isReady()) { | ||
| log.warn("WebviewManager not ready. Cannot display issue."); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not ready means we're waiting for something - are we waiting? doing a retry after some time? otherwise - let's alter the message
bundle/src/main/java/com/jfrog/ide/eclipse/ui/issues/ComponentIssueDetails.java
Outdated
Show resolved
Hide resolved
bundle/src/main/java/com/jfrog/ide/eclipse/ui/issues/ComponentIssueDetails.java
Outdated
Show resolved
Hide resolved
| private Frame frame; | ||
|
|
||
| // State management | ||
| private final AtomicBoolean browserInitialized = new AtomicBoolean(false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need AtomicBoolean instead of boolean?
if there's a purpose - please explain it here

Uh oh!
There was an error while loading. Please reload this page.