From ebf67d916d469dc588f90af3436de4bdd50957b0 Mon Sep 17 00:00:00 2001 From: Juergen Schmidt Date: Wed, 7 Mar 2001 13:02:52 +0000 Subject: [PATCH] new option -nD --- codemaker/source/javamaker/javatype.cxx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/codemaker/source/javamaker/javatype.cxx b/codemaker/source/javamaker/javatype.cxx index 43ce6634396d..2fdc5894d7ea 100644 --- a/codemaker/source/javamaker/javatype.cxx +++ b/codemaker/source/javamaker/javatype.cxx @@ -2,9 +2,9 @@ * * $RCSfile: javatype.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: jsc $ $Date: 2001-03-06 08:17:55 $ + * last change: $Author: jsc $ $Date: 2001-03-07 14:02:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1831,6 +1831,9 @@ sal_Bool TypeDefType::dump(JavaOptions* pOptions) { OString relBaseType(checkRealBaseType(m_typeName)); + if ( pOptions->isValid("-nD") ) + return sal_True; + return produceType(relBaseType, m_typeMgr, m_dependencies, pOptions); }