MCPcopy Create free account
hub / github.com/beanshell/beanshell / unsetVariable

Method unsetVariable

src/bsh/NameSpace.java:362–369  ·  view source on GitHub ↗

Remove the variable from the namespace.

( String name )

Source from the content-addressed store, hash-verified

360 Remove the variable from the namespace.
361 */
362 public void unsetVariable( String name )
363 {
364 if ( variables != null )
365 {
366 variables.remove( name );
367 nameSpaceChanged();
368 }
369 }
370
371 /**
372 Get the names of variables defined in this namespace.

Callers 1

unsetMethod · 0.45

Calls 2

nameSpaceChangedMethod · 0.95
removeMethod · 0.45

Tested by

no test coverage detected