Delete tls.urm.puml

This commit is contained in:
Thomas 2017-01-29 11:28:27 +01:00 committed by GitHub
parent 3342851005
commit c529e35791

View File

@ -1,28 +0,0 @@
@startuml
package com.iluwatar.tls {
class App {
~ dateList : List<Date> {static}
~ exceptionList : List<String> {static}
+ App()
+ main(args : String[]) {static}
}
class AppUgly {
~ dateList : List<Date> {static}
~ exceptionList : List<String> {static}
+ AppUgly()
+ main(args : String[]) {static}
}
class DateFormatRunnable {
- dateValue : String
- df : ThreadLocal<DateFormat>
+ DateFormatRunnable(inDateFormat : String, inDateValue : String)
+ run()
}
class DateFormatUglyRunnable {
- dateValue : String
- df : DateFormat
+ DateFormatUglyRunnable(inDateFormat : String, inDateValue : String)
+ run()
}
}
@enduml