summaryrefslogtreecommitdiff
path: root/autodoc/source/parser_i/tokens/tkpstam2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/parser_i/tokens/tkpstam2.cxx')
-rw-r--r--autodoc/source/parser_i/tokens/tkpstam2.cxx31
1 files changed, 0 insertions, 31 deletions
diff --git a/autodoc/source/parser_i/tokens/tkpstam2.cxx b/autodoc/source/parser_i/tokens/tkpstam2.cxx
index 1d979d586089..6a6d4a03b9c6 100644
--- a/autodoc/source/parser_i/tokens/tkpstam2.cxx
+++ b/autodoc/source/parser_i/tokens/tkpstam2.cxx
@@ -175,34 +175,3 @@ StateMachin2::Peek(intt in_nBranch)
StmArrayStatu2 & rSt = CurrentStatus();
nPeekedStatus = rSt.NextBy(in_nBranch);
}
-
-void
-StateMachin2::PrintOut()
-{
- const intt anzahl = nNrofStati;
- for (int i = 0; i < anzahl; i++)
- {
- Cout() << i << ':';
- StmArrayStatu2 * pArrSt = pStati[i]->AsArray();
- if (pArrSt != 0)
- {
- Cout() << Endl();
- for (int b = 0; b < 128; b++)
- {
- Cout().width(4);
- Cout() << pArrSt->NextBy(b);
- if (b%16 == 15)
- Cout() << Endl();
- }
- }
- else if (pStati[i]->AsBounds() != 0)
- {
- Cout() << "Bounds ";
- }
- else
- Cout() << "Error! ";
- Cout() << (pStati[i]->IsADefault() ? "DEF" : "---")
- << Endl();
- } // for
-}
-