return newTime(getRuntime(), dt.withZone(getLocalTimeZone(getRuntime())), nsec);
}
@JRubyMethod(name = "strftime", required = 1)
public RubyString strftime(IRubyObject format) {
final RubyDateFormat rubyDateFormat = getRuntime().getCurrentContext().getRubyDateFormat();
rubyDateFormat.applyPattern(format.convertToString().getUnicodeValue());
rubyDateFormat.setDateTime(dt);
rubyDateFormat.setNSec(nsec);
String result = rubyDateFormat.format(null);
return getRuntime().newString(result);
}