repo rework: Remove stubs; Breaks repo compat.
* These stubbs satisfied older Haiku releases that required the URL * Users running nightly images will need to upgrade to hrev50723 - hrev50744 before upgrading further * Getting this out of the way now before the beta comes out. * New installations shouldn't suffer any problems.
This commit is contained in:
parent
7cfc043e00
commit
602076ef82
@ -55,9 +55,6 @@ public:
|
||||
|
||||
static const uint8 kDefaultPriority;
|
||||
|
||||
// XXX: Kill me after everyone upgrades
|
||||
static const char* const kURLField;
|
||||
|
||||
static const char* const kNameField;
|
||||
static const char* const kVendorField;
|
||||
static const char* const kSummaryField;
|
||||
|
@ -35,9 +35,6 @@ const char* const BRepositoryInfo::kArchitectureField = "architecture";
|
||||
const char* const BRepositoryInfo::kLicenseNameField = "licenseName";
|
||||
const char* const BRepositoryInfo::kLicenseTextField = "licenseText";
|
||||
|
||||
// XXX: Kill me after everyone upgrades.
|
||||
const char* const BRepositoryInfo::kURLField = "url";
|
||||
|
||||
|
||||
BRepositoryInfo::BRepositoryInfo()
|
||||
:
|
||||
@ -85,10 +82,6 @@ BRepositoryInfo::Archive(BMessage* data, bool deep) const
|
||||
if (result != B_OK)
|
||||
return result;
|
||||
|
||||
// XXX: Kill me after everyone upgrades
|
||||
if ((result = data->AddString(kURLField, "STUB")) != B_OK)
|
||||
return result;
|
||||
|
||||
if ((result = data->AddString(kNameField, fName)) != B_OK)
|
||||
return result;
|
||||
if ((result = data->AddString(kVendorField, fVendor)) != B_OK)
|
||||
|
Loading…
Reference in New Issue
Block a user