author | wenzelm |
Sun, 24 Aug 2008 21:15:44 +0200 | |
changeset 27989 | a4fdc97cd2ff |
parent 27988 | efc6d38d16d2 |
child 27990 | f9dd4c9ed812 |
--- a/src/Pure/General/position.scala Sun Aug 24 19:24:27 2008 +0200 +++ b/src/Pure/General/position.scala Sun Aug 24 21:15:44 2008 +0200 @@ -13,7 +13,7 @@ object Position { private def get_string(name: String, props: Properties) = { - val value = props.getProperty(name) + val value = if (props != null) props.getProperty(name) else null if (value != null) Some(value) else None }