From 22b79511fe4898459614997430d2dcb5ff4d826f Mon Sep 17 00:00:00 2001 From: samreid Date: Mon, 30 Dec 2019 09:18:10 -0700 Subject: [PATCH] Rename DOT/Util and SCENERY/Util to Utils, see https://github.com/phetsims/tasks/issues/966 --- js/AtomIdentifier.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/AtomIdentifier.js b/js/AtomIdentifier.js index 3bc43e2..52aa8c1 100644 --- a/js/AtomIdentifier.js +++ b/js/AtomIdentifier.js @@ -11,7 +11,7 @@ define( require => { 'use strict'; const shred = require( 'SHRED/shred' ); - const Util = require( 'DOT/Util' ); + const Utils = require( 'DOT/Utils' ); // An arbitrary value used to signify a 'trace' abundance, meaning that a very small amount of this isotope is // present on Earth. @@ -950,7 +950,7 @@ define( require => { ISOTOPE_INFO_TABLE[ isotope.protonCountProperty.get() ][ isotope.massNumberProperty.get() ] !== undefined ) { // the configuration is in the table, get it and round it to the needed number of decimal places - abundanceProportion = Util.toFixedNumber( + abundanceProportion = Utils.toFixedNumber( ISOTOPE_INFO_TABLE[ isotope.protonCountProperty.get() ][ isotope.massNumberProperty.get() ].abundance, numDecimalPlaces );