Skip to content

Commit dfe1828

Browse files
committed
Make local variable accessed from inner class final (issue chromiumembedded#258)
1 parent 7443a3f commit dfe1828

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

java/org/cef/CefApp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ public void run() {
503503
* Perform a single message loop iteration. Used on all platforms except
504504
* Windows with windowed rendering.
505505
*/
506-
public final void doMessageLoopWork(long delay_ms) {
506+
public final void doMessageLoopWork(final long delay_ms) {
507507
// Execute on the AWT event dispatching thread.
508508
SwingUtilities.invokeLater(new Runnable() {
509509
@Override

0 commit comments

Comments
 (0)