Skip to content

Commit

Permalink
Fixing imports to use direct imports, instead of phet-lib imports.ts …
Browse files Browse the repository at this point in the history
…files. See phetsims/phet-lib#6
  • Loading branch information
jonathanolson committed Mar 5, 2024
1 parent 16ac0bb commit deffbe4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/common/view/SoundParticleImageLayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

import merge from '../../../../phet-core/js/merge.js';
import { Image, Node, NodeOptions } from '../../../../scenery/js/imports.js';
import { Bounds2 } from '../../../../dot/js/imports.js';
import waveInterference from '../../waveInterference.js';
import WaveInterferenceConstants from '../WaveInterferenceConstants.js';
import SoundParticleNode from './SoundParticleNode.js';
import WavesModel from '../../waves/model/WavesModel.js';
import Bounds2 from '../../../../dot/js/Bounds2.js';

class SoundParticleImageLayer extends Node {

Expand Down
2 changes: 1 addition & 1 deletion js/common/view/ToolboxPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import MeasuringTapeNode from '../../../../scenery-phet/js/MeasuringTapeNode.js'
import StopwatchNode from '../../../../scenery-phet/js/StopwatchNode.js';
import TReadOnlyProperty from '../../../../axon/js/TReadOnlyProperty.js';
import { AlignGroup, DragListener, HBox, InteractiveHighlightingNode } from '../../../../scenery/js/imports.js';
import { Vector2 } from '../../../../dot/js/imports.js';
import waveInterference from '../../waveInterference.js';
import WaveInterferenceConstants from '../WaveInterferenceConstants.js';
import WaveInterferencePanel from './WaveInterferencePanel.js';
import WaveMeterNode from './WaveMeterNode.js';
import Vector2 from '../../../../dot/js/Vector2.js';

class ToolboxPanel extends WaveInterferencePanel {

Expand Down

0 comments on commit deffbe4

Please sign in to comment.