MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / tzOffset

Method tzOffset

src/main/java/ui/Time.java:120–127  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

118 }
119
120 public static String tzOffset(){
121 StringBuffer tz=new StringBuffer();
122 int tzi=tzo;
123 char sign='+';
124 if (tzo<0) { sign='-'; tzi=-tzo; }
125 tz.append(sign).append(lz2(tzi)).append(":00");
126 return tz.toString();
127 }
128
129 public static String dispLocalTime(){
130 long utcDate=utcTimeMillis();

Callers 1

blockArrivedMethod · 0.80

Calls 3

lz2Method · 0.95
appendMethod · 0.80
toStringMethod · 0.45

Tested by

no test coverage detected