comparison orange/serialization/Serializer.d @ 48:a7dea44fa9e3

Removed unnecessary method.
author Jacob Carlborg <doob@me.com>
date Sat, 13 Aug 2011 15:24:52 +0200
parents 9c9bbef6bf5e
children beb4afce2f3e
comparison
equal deleted inserted replaced
47:9c9bbef6bf5e 48:a7dea44fa9e3
1009 private string nextKey () 1009 private string nextKey ()
1010 { 1010 {
1011 return toData(keyCounter++); 1011 return toData(keyCounter++);
1012 } 1012 }
1013 1013
1014 private string prevKey ()
1015 {
1016 return toData(--keyCounter);
1017 }
1018
1019 private void resetCounters () 1014 private void resetCounters ()
1020 { 1015 {
1021 keyCounter = 0; 1016 keyCounter = 0;
1022 idCounter = 0; 1017 idCounter = 0;
1023 } 1018 }