forked from I2P_Developers/i2p.i2p
Update manager: Notify GeoIP type and file version
This commit is contained in:
@ -1147,13 +1147,13 @@ public class ConsoleUpdateManager implements UpdateManager, RouterApp {
|
||||
return rv;
|
||||
}
|
||||
|
||||
///////// End UpdateManager interface
|
||||
|
||||
/**
|
||||
* Adds to installed, removes from downloaded and available
|
||||
* @param id subtype for plugins, or ""
|
||||
* @param version null to remove from installed
|
||||
* @since public since 0.9.45
|
||||
*/
|
||||
private void notifyInstalled(UpdateType type, String id, String version) {
|
||||
public void notifyInstalled(UpdateType type, String id, String version) {
|
||||
UpdateItem ui = new UpdateItem(type, id);
|
||||
if (version == null) {
|
||||
_installed.remove(ui);
|
||||
@ -1173,6 +1173,8 @@ public class ConsoleUpdateManager implements UpdateManager, RouterApp {
|
||||
_available.remove(ui);
|
||||
}
|
||||
|
||||
///////// End UpdateManager interface
|
||||
|
||||
/**
|
||||
* Adds to downloaded, removes from available
|
||||
*/
|
||||
|
Reference in New Issue
Block a user