Skip to content

Commit

Permalink
Fix straggler imports
Browse files Browse the repository at this point in the history
  • Loading branch information
rcebulko committed May 17, 2021
1 parent d56efbb commit a8ce9ea
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ads/vendors/adventive.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {addParamsToUrl} from '../../src/url.js';
import {addParamsToUrl} from '../../src/url';
import {dict, hasOwn} from '../../src/core/types/object';
import {endsWith} from '../../src/core/types/string';
import {loadScript, validateData, writeScript} from '../../3p/3p';
Expand Down
2 changes: 1 addition & 1 deletion ads/vendors/netletix.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

import {addParamsToUrl, assertHttpsUrl} from '../../src/url.js';
import {addParamsToUrl, assertHttpsUrl} from '../../src/url';
import {dev} from '../../src/log.js';
import {dict} from '../../src/core/types/object';
import {loadScript, validateData, writeScript} from '../../3p/3p';
Expand Down
2 changes: 1 addition & 1 deletion extensions/amp-form/0.1/test/test-amp-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import {
isFormDataWrapper,
} from '../../../../src/form-data-wrapper';
import {fromIterator} from '../../../../src/core/types/array';
import {parseQueryString} from '../../../../src/url.js';
import {parseQueryString} from '../../../../src/core/types/string/url';
import {
setCheckValiditySupportedForTesting,
setReportValiditySupportedForTesting,
Expand Down
1 change: 0 additions & 1 deletion extensions/amp-viewer-integration/0.1/highlight-handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {isExperimentOn} from '../../../src/experiments';
import {listenOnce} from '../../../src/event-helper';
import {moveLayoutRect} from '../../../src/layout-rect';
import {once} from '../../../src/core/types/function';
import {parseQueryString} from '../../../src/url';
import {parseJson} from '../../../src/core/types/object/json';
import {parseQueryString} from '../../../src/core/types/string/url';
import {resetStyles, setInitialDisplay, setStyles} from '../../../src/style';
Expand Down
2 changes: 1 addition & 1 deletion extensions/amp-web-push/0.1/amp-web-push-helper-frame.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {TAG} from './vars';
import {WindowMessenger} from './window-messenger';
import {getMode} from '../../../src/mode';
import {initLogConstructor, setReportError, user} from '../../../src/log';
import {parseQueryString} from '../../../src/url.js';
import {parseQueryString} from '../../../src/core/types/string/url';
import {reportError} from '../../../src/error-reporting';

initLogConstructor();
Expand Down
4 changes: 2 additions & 2 deletions extensions/amp-web-push/0.1/amp-web-push-permission-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import {escapeCssSelectorIdent} from '../../../src/core/dom/css';
import {getMode} from '../../../src/mode';
import {
parseQueryString,
parseUrlDeprecated,
tryDecodeUriComponent,
} from '../../../src/url.js';
} from '../../../src/core/types/string/url';
import {parseUrlDeprecated} from '../../../src/url.js';

/** @typedef {{
* debug: boolean,
Expand Down
2 changes: 1 addition & 1 deletion src/experiments/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {getMode} from '../mode';
import {getTopWindow} from '../service';
import {hasOwn, map} from '../core/types/object';
import {isArray} from '../core/types';
import {parseQueryString} from './core/types/string/url';
import {parseQueryString} from '../core/types/string/url';

// typedef imports
import {ExperimentInfoDef} from './experiments.type';
Expand Down

0 comments on commit a8ce9ea

Please sign in to comment.