Skip to content

Commit

Permalink
Remove nested provided namespaces goog.i18n.currency.CurrencyInfo and…
Browse files Browse the repository at this point in the history
… CurrencyInfoTier2.

RELNOTES: Remove CurrencyInfo and CurrencyInfoTier2 provides, as they can be accessed from the goog.i18n.currency provide.
PiperOrigin-RevId: 503514034
Change-Id: I9843720ebb703f6f1061fd0efb8f13c927ab1d20
  • Loading branch information
12wrigja authored and Copybara-Service committed Jan 20, 2023
1 parent 53af1cd commit 723c869
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions closure/goog/i18n/currency.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@


goog.provide('goog.i18n.currency');
goog.provide('goog.i18n.currency.CurrencyInfo');
goog.provide('goog.i18n.currency.CurrencyInfoTier2');


/**
Expand Down
2 changes: 1 addition & 1 deletion closure/goog/i18n/currency_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ goog.setTestOnly();

const NumberFormat = goog.require('goog.i18n.NumberFormat');
const PropertyReplacer = goog.require('goog.testing.PropertyReplacer');
const RawCurrencyInfo = goog.require('goog.i18n.currency.CurrencyInfo');
const currency = goog.require('goog.i18n.currency');
const googObject = goog.require('goog.object');
const testSuite = goog.require('goog.testing.testSuite');

const RawCurrencyInfo = currency.CurrencyInfo;
let CurrencyInfo = RawCurrencyInfo;

const stubs = new PropertyReplacer();
Expand Down
1 change: 0 additions & 1 deletion closure/goog/i18n/numberformat.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ goog.require('goog.i18n.NumberFormatSymbols');
goog.require('goog.i18n.NumberFormatSymbolsType');
goog.require('goog.i18n.NumberFormatSymbols_u_nu_latn');
goog.require('goog.i18n.currency');
goog.require('goog.i18n.currency.CurrencyInfo');
goog.require('goog.math');
goog.require('goog.string');

Expand Down

0 comments on commit 723c869

Please sign in to comment.