Skip to content

Commit

Permalink
Perform clean code of bundles/org.eclipse.equinox.metatype
Browse files Browse the repository at this point in the history
  • Loading branch information
eclipse-equinox-bot authored and laeubi committed Jan 30, 2025
1 parent 9c38082 commit d06074e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ public void init(String name, Attributes atts) {
private static class MyErrorHandler implements ErrorHandler {

/** Error handler output goes here */
private PrintStream _out;
private final PrintStream _out;

MyErrorHandler(PrintStream out) {
this._out = out;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class MetaTypeServiceImpl implements EquinoxMetaTypeService, SynchronousBundleListener {
private static String CACHE_FILE = "metaTypeCache"; //$NON-NLS-1$
SAXParserFactory _parserFactory;
private Hashtable<Long, EquinoxMetaTypeInformation> _mtps = new Hashtable<>(7);
private final Hashtable<Long, EquinoxMetaTypeInformation> _mtps = new Hashtable<>(7);

private final LogTracker logger;
private final ServiceTracker<Object, Object> metaTypeProviderTracker;
Expand Down

0 comments on commit d06074e

Please sign in to comment.