Skip to content

Commit

Permalink
The Pauling Electronegativity is copied in configure as well. I can't…
Browse files Browse the repository at this point in the history
… see why not copy everything we have.

Signed-off-by: Rajarshi  Guha <rajarshi.guha@gmail.com>
  • Loading branch information
Stefan Kuhn authored and rajarshi committed Sep 13, 2009
1 parent 38d0235 commit 3fd2b17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/org/openscience/cdk/config/ElementPTFactory.java 100644 → 100755
Expand Up @@ -167,9 +167,11 @@ public PeriodicTableElement configure(PeriodicTableElement element) throws CDKEx
element.setName(elementInt.getName());
element.setChemicalSerie(elementInt.getChemicalSerie());
element.setPeriod(elementInt.getPeriod());
element.setGroup(elementInt.getGroup());
if(elementInt.getGroup()!=null)
element.setGroup(elementInt.getGroup());
element.setPhase(elementInt.getPhase());
element.setCASid(elementInt.getCASid());
element.setPaulingEneg(elementInt.getPaulingEneg());
return element;
}
/**
Expand Down

0 comments on commit 3fd2b17

Please sign in to comment.