Simeon Andreev

Results 18 issues of Simeon Andreev

For this snippet, I see the following bug reported with SpotBugs 4.7: ``` package test; public class TestFinalize { public int x; @Override protected void finalize() throws Throwable { ++x;...

Reproduction with snippet: ``` package test; public class TestStaticAccess { private static final Object lock = new Object(); private static int x = 0; private static int y = 0;...

bug
false positive

See e.g.: http://jcenter.bintray.com/com/fasterxml/aalto-xml/1.0.0/ http://jcenter.bintray.com/com/fasterxml/aalto-xml/1.1.0/ E.g. from `aalto-xml-1.0.0-sources.jar`: ` Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: tatu Build-Jdk: 1.7.0_79 Specification-Title: aalto-xml Specification-Version: 1.0.0 Specification-Vendor: FasterXML Implementation-Title: aalto-xml Implementation-Version: 1.0.0...

The `@OverridingMethodsMustInvokeSuper` annotation hints that the code in a specific method must always run, even if the method is overriden. It would be nice if the plug-in would check at...

To reproduce: 1. Download Adoptium JDK 21: https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1%2B12/OpenJDK21U-jdk_x64_linux_hotspot_21.0.1_12.tar.gz 2. Run snippet (everything is on the classpath, not the module path): ``` package test; import net.bytebuddy.ByteBuddy; import net.bytebuddy.description.modifier.Ownership; import net.bytebuddy.description.modifier.Visibility; import...

question

Here is an inspection of a `GtkContainer` with a `GtkScale`: ![gtk322_scale_slider_image](https://user-images.githubusercontent.com/24752155/39477481-b622fd74-4d5f-11e8-8c59-b1816975491e.png) This is more pronounced in Eclipse SWT, where anything outside of the container is not painted: ![gtk322_scale_in_swt](https://user-images.githubusercontent.com/24752155/39477599-00be3a4c-4d60-11e8-862f-25b583f69d43.png) The following...

Especially visible when a button is on focus (e.g. with pressing tab), due to the outline: GTK 3.22: ![gtk_322_button_outline_and_border](https://user-images.githubusercontent.com/24752155/39393437-78ee1638-4ac5-11e8-8b2e-7a7612ad9bdc.png) GTK 3.14: ![gtk_314_button_outline_and_border](https://user-images.githubusercontent.com/24752155/39393438-7907009e-4ac5-11e8-8aff-08c791e1dbe9.png) I have reported https://gitlab.gnome.org/GNOME/gtk/issues/206 for the behaviour change,...

Whenever a project is closed, its resource tree is saved. This includes linked resources in the project. When the project is re-opened, link changes in the .project file are not...

In our product, we have a builder that reads linked folders. The builder runs into a NPE, due to stale links information. The stale links information results due to the...

bug