Skip to content

Commit

Permalink
Fix warnings in o.e.e.p2.updatesite
Browse files Browse the repository at this point in the history
Generification and deprecated usages.
  • Loading branch information
akurtakov committed Oct 22, 2024
1 parent 3af8373 commit e9fd52d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2020 Code 9 and others.
* Copyright (c) 2008, 2024 Code 9 and others.
*
* This
* program and the accompanying materials are made available under the terms of
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2017 IBM Corporation and others.
* Copyright (c) 2008, 2024 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -82,7 +82,7 @@ private static boolean isURL(URI location) {

private void resetCache(IArtifactRepository repository) {
repository.setProperty(PROP_SITE_CHECKSUM, "0"); //$NON-NLS-1$
repository.removeAll();
repository.removeAll(new NullProgressMonitor());
}

public IArtifactRepository loadRepository(URI location, IProgressMonitor monitor) {
Expand Down Expand Up @@ -110,7 +110,7 @@ public void initializeRepository(IArtifactRepository repository, URI location, I
repository.setProperty(PROP_SITE_CHECKSUM, updateSite.getChecksum());
if (updateSite.getSite().getMirrorsURI() != null)
repository.setProperty(IRepository.PROP_MIRRORS_URL, updateSite.getSite().getMirrorsURI());
repository.removeAll();
repository.removeAll(new NullProgressMonitor());
generateArtifactDescriptors(updateSite, repository, monitor);
}

Expand Down Expand Up @@ -151,6 +151,6 @@ private void generateArtifactDescriptors(UpdateSite updateSite, IArtifactReposit
}
}
IArtifactDescriptor[] descriptors = allSiteArtifacts.toArray(new IArtifactDescriptor[allSiteArtifacts.size()]);
repository.addDescriptors(descriptors);
repository.addDescriptors(descriptors, monitor);
}
}

0 comments on commit e9fd52d

Please sign in to comment.