Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: org.eclipse.e4.ui.workbench.renderers.swt;singleton:=true
Bundle-Version: 0.16.600.qualifier
Bundle-Version: 0.16.700.qualifier
Bundle-Name: %pluginName
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void updateContributionItems(Selector selector) {
if (timestampOfEarliestQueuedUpdate == 0) {
timestampOfEarliestQueuedUpdate = System.nanoTime();
}
if (System.nanoTime() - timestampOfEarliestQueuedUpdate > DELAY * 1_000_000) {
if (System.nanoTime() - timestampOfEarliestQueuedUpdate > DELAY * 1_000_000L) {
// runnable was not called within the last DELAY milliseconds, do it now.
// For scenario: a plugin is forcing that updateContributionItems is called
// again and again in less than given DELAY frequency. TimerExec would then
Expand Down
Loading